OFFSET
1,2
COMMENTS
The subsequence of prime partial sums of lucky numbers begins: 11, 401, 1259, 2039. The subsequence of lucky partial sums of lucky numbers begins: 33, 69, 195, 537, 685, 1501, 5191. - Jonathan Vos Post, Feb 11 2010
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
MATHEMATICA
luckyLimit = 300; t = Range[1, luckyLimit, 2]; sieve[n_] := Module[{k = t[[n]]}, t = Delete[t, Table[{i}, {i, k, Length[t], k}]]]; n = 1; While[t[[n]] < Length[t], n++; sieve[n]]; Accumulate[t] (* Harvey P. Dale, Apr 05 2011 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Patrick De Geest, Jun 15 1998
EXTENSIONS
Offset 1 from Michel Marcus, Oct 10 2019
STATUS
approved