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

A076201
a(n), for n > 1, equals the least prime p such that p - a(n-1) is a cube, a(1)=2.
4
2, 3, 11, 19, 83, 1811, 2027, 2243, 2251, 2467, 2531, 2539, 3539, 3547, 4547, 5059, 10891, 12619, 13619, 13627, 13691, 13907, 14419, 155027, 155539, 156539, 157051, 267643, 268643, 270371, 270379, 270443, 270451, 270667, 276499, 277499, 280243, 281243, 281251
OFFSET
1,1
EXAMPLE
a(2) = 3 because 3 - a(1) = 1^3.
a(3) = 11 because 11 - a(2) = 2^3, while neither 5 - 3 nor 7 - 3 is a cube.
MATHEMATICA
p = 3; s = Join[{2, 3}, Table[x = 2; While[!PrimeQ[q = p + x^3], x = x + 2]; p = q, {29}]] (* Zak Seidov, Apr 08 2013 *)
CROSSREFS
Cf. A073609.
Sequence in context: A051097 A214773 A235618 * A129668 A086791 A291633
KEYWORD
nonn
AUTHOR
Zak Seidov, Nov 02 2002
STATUS
approved