The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A227412 Primes of the form n^3 + (n+1)^3 + 2. 2
11, 37, 191, 857, 2333, 3061, 4943, 6121, 9011, 22817, 33203, 89533, 105527, 114193, 341993, 421381, 536771, 931087, 1005041, 1294561, 1386443, 1583047, 1911493, 2416061, 4866481, 5086811, 5199427, 5429621, 7376141, 7814207, 8903071, 9399097, 9739811, 9913213 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Primes which are sum of two consecutive cubes plus 2.
LINKS
FORMULA
Primes of the form 2*n^3 + 3*n^2 + 3*n + 3.
EXAMPLE
a(2)=37: k^3+(k+1)^3+2= 2^3+3^3+2= 8+27+2= 37 which is prime.
a(3)=191: k^3+(k+1)^3+2= 4^3+5^3+2= 64+125+2= 191 which is prime.
MAPLE
KD:= proc() local a; a:= (k)^3+(k+1)^3+2; if isprime(a) then RETURN(a): fi; end: seq(KD(), k=1..500);
MATHEMATICA
Select[Table[(x^3+(x+1)^3+2), {x, 1000}], PrimeQ]
CROSSREFS
Sequence in context: A306423 A287018 A152094 * A160623 A147556 A201312
KEYWORD
nonn
AUTHOR
K. D. Bajpai, Sep 22 2013
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 17 12:26 EDT 2024. Contains 372600 sequences. (Running on oeis4.)