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

A096174
Even numbers k such that (k^3+1)/(k+1) is prime.
8
2, 4, 6, 16, 18, 22, 28, 34, 42, 58, 60, 70, 72, 76, 78, 90, 100, 102, 106, 112, 118, 120, 132, 142, 144, 148, 154, 156, 162, 168, 174, 190, 204, 210, 216, 232, 246, 280, 288, 294, 310, 330, 352, 358, 370, 382, 384, 396, 406, 436, 448, 454, 456, 490, 496, 526
OFFSET
1,1
LINKS
EXAMPLE
a(1)=2 because (2^3+1)/(2+1)=9/3=3 is prime, a(8)=34: (34^3+1)/(34+1)=39305/35=1123 is prime.
PROG
(PARI) is(n)=n%2==0 && isprime((n^3+1)/(n+1)) \\ Charles R Greathouse IV, Feb 17 2017
CROSSREFS
Cf. A055494.
Sequence in context: A326782 A358126 A379291 * A096173 A287681 A333021
KEYWORD
nonn
AUTHOR
Hugo Pfoertner, Jun 20 2004
EXTENSIONS
Definition corrected by N. J. A. Sloane, Apr 08 2010
STATUS
approved