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”).

A069861
Numbers n that divide the concatenation of next n numbers.
3
1, 2, 3, 5, 6, 9, 10, 11, 12, 15, 18, 20, 21, 22, 25, 27, 30, 33, 36, 39, 42, 44, 45, 50, 54, 56, 60, 68, 72, 75, 90, 98, 100, 104, 108, 110, 111, 114, 120, 125, 126, 130, 132, 135, 140, 148, 150, 154, 155, 156, 162, 168, 180, 182, 185, 196, 198, 200, 205, 210, 216
OFFSET
1,2
EXAMPLE
9 divides 101112131415161718 hence is a member.
MATHEMATICA
f[n_] := Block[{j = 0, k = n + 1}, While[k < 2n + 1, j = ToExpression[ StringJoin[ ToString[j], ToString[k]]]; k++ ]; j]; Select[ Range[300], IntegerQ[ f[ # ] / # ] & ]
CROSSREFS
Sequence in context: A069880 A230044 A329269 * A047449 A162923 A107040
KEYWORD
base,nonn
AUTHOR
Amarnath Murthy, Apr 18 2002
EXTENSIONS
Edited, corrected and extended by Robert G. Wilson v
STATUS
approved