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

A284890
a(1)=2, and then a(n+1) = a(n) + k where prime(k) is the least prime dividing a(n).
1
2, 3, 5, 8, 9, 11, 16, 17, 24, 25, 28, 29, 39, 41, 54, 55, 58, 59, 76, 77, 81, 83, 106, 107, 135, 137, 170, 171, 173, 213, 215, 218, 219, 221, 227, 276, 277, 336, 337, 405, 407, 412, 413, 417, 419, 500, 501, 503, 599, 708, 709, 836, 837, 839, 985, 988, 989
OFFSET
1,1
LINKS
FORMULA
a(n+1) = a(n) + A055396(a(n)) for any n>1.
EXAMPLE
a(9) = 24 = prime(1)^3*prime(2), hence a(10) = 24+1 = 25.
a(14) = 41 = prime(13), hence a(15) = 41+13 = 54.
MATHEMATICA
NestList[#+PrimePi[FactorInteger[#][[1, 1]]]&, 2, 60] (* Harvey P. Dale, May 08 2022 *)
CROSSREFS
Sequence in context: A285253 A047254 A226815 * A051214 A256722 A364926
KEYWORD
nonn
AUTHOR
Rémy Sigrist, Apr 05 2017
STATUS
approved