OFFSET
0,7
COMMENTS
2.54 = 127/50. - Eric Desbiaux, Nov 16 2008
LINKS
Zhuorui He, Table of n, a(n) for n = 0..10000
FORMULA
a(n) = floor(n/2.54).
Eric Desbiaux suggested (Apr 19 2008) that A047332(n)-A080686(n) =? a(n-1), but R. J. Mathar points out that this is only true for the first 23 terms and so is nothing more than a coincidence. - N. J. A. Sloane, Apr 26 2008
MATHEMATICA
Floor[Range[0, 100]*100/254] (* Paolo Xausa, Jul 16 2025 *)
PROG
(PARI) a(n) = n*100\254; \\ edited by Michel Marcus, Nov 06 2025
(Python) def a(n): return n*100//254 # Michael S. Branicky, Nov 08 2025
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Cino Hilliard, Aug 12 2003
EXTENSIONS
Corrected by T. D. Noe, Nov 02 2006
STATUS
approved
