OFFSET
1,2
COMMENTS
Conjecture: all terms are odd, all terms greater than 7 are composite, and all terms greater than 1 are divisible by 3 or 5 or 7 some combination therof. - Harvey P. Dale, Dec 04 2020
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..100
MATHEMATICA
nxt[{n_, a_}]:={n+1, 15a+n+1}; Select[NestList[nxt, {1, 1}, 17500], Divisible[ #[[2]], #[[1]]]&][[All, 1]] (* Harvey P. Dale, Dec 04 2020 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
STATUS
approved