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

A014822
Numbers k such that k divides s(k), where s(1)=1, s(j)=10*s(j-1)+j (A014824).
0
1, 2, 3, 5, 6, 9, 10, 15, 18, 22, 27, 30, 42, 45, 54, 66, 78, 81, 90, 110, 111, 126, 135, 162, 198, 205, 210, 222, 234, 242, 243, 270, 294, 330, 333, 342, 378, 390, 405, 410, 462, 465, 486, 506, 546, 555, 594, 615, 630, 666, 702, 726, 729, 810, 858, 882, 930
OFFSET
1,2
MATHEMATICA
Transpose[Select[NestList[{#[[1]]+1, 10#[[2]]+#[[1]]+1}&, {1, 1}, 1000], Divisible[ #[[2]], #[[1]]]&]][[1]] (* Harvey P. Dale, Sep 24 2012 *)
CROSSREFS
Sequence in context: A293976 A173492 A133030 * A018462 A191286 A018659
KEYWORD
nonn
STATUS
approved