login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A068159
a(n) = floor[ n/R(n) ], where R(n) (A004086) = Digit reversal of n.
1
1, 1, 1, 1, 1, 1, 1, 1, 1, 10, 1, 0, 0, 0, 0, 0, 0, 0, 0, 10, 1, 1, 0, 0, 0, 0, 0, 0, 0, 10, 2, 1, 1, 0, 0, 0, 0, 0, 0, 10, 2, 1, 1, 1, 0, 0, 0, 0, 0, 10, 3, 2, 1, 1, 1, 0, 0, 0, 0, 10, 3, 2, 1, 1, 1, 1, 0, 0, 0, 10, 4, 2, 1, 1, 1, 1, 1, 0, 0, 10, 4, 2, 2, 1, 1, 1, 1, 1, 0, 10, 4, 3, 2, 1, 1, 1, 1, 1, 1
OFFSET
1,10
EXAMPLE
a(61) = floor[61 / 16] = 3.
MATHEMATICA
Reversal = ToExpression @ StringReverse @ ToString[ # ] &; Table[ Floor[n/Reversal[n]], {n, 1, 100}]
CROSSREFS
Sequence in context: A287190 A277926 A222521 * A108695 A265373 A309202
KEYWORD
base,easy,nonn
AUTHOR
Amarnath Murthy, Feb 24 2002
EXTENSIONS
Edited by Robert G. Wilson v, Mar 02 2002
STATUS
approved