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

A014875
Numbers k that divide s(k), where s(1)=1, s(j)=24*s(j-1)+j.
1
1, 2, 3, 4, 6, 8, 10, 12, 20, 23, 24, 30, 40, 42, 46, 50, 60, 69, 84, 92, 100, 110, 120, 138, 150, 156, 168, 184, 200, 210, 220, 230, 250, 276, 294, 300, 312, 330, 420, 440, 460, 474, 500, 529, 550, 552, 588, 600, 660, 690, 750, 780, 840, 876, 920, 930, 948
OFFSET
1,2
LINKS
MATHEMATICA
nxt[{s_, k_}]:={24s+k+1, k+1}; Transpose[Select[NestList[nxt, {1, 1}, 1000], Divisible[ #[[1]], #[[2]]]&]][[2]] (* Harvey P. Dale, Apr 05 2014 *)
CROSSREFS
Sequence in context: A020490 A217660 A275581 * A029469 A061953 A029517
KEYWORD
nonn
STATUS
approved