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

A182351
Primes of the form n^4 - 6.
0
619, 1500619, 577200619, 3603000619, 4931550619, 12594450619, 24343800619, 29661450619, 32625390619, 65037750619, 88223850619, 195562950619, 220172100619, 586181640619, 1335469140619, 1659523650619, 2480703750619
OFFSET
1,1
EXAMPLE
619 = 5^4 - 6; 1500619 = 35^4 - 6.
MAPLE
# choose N large, then S is the desired set
f:=n->n^4 - 6:
S:={}:
for n from 0 to N do if(isprime(f(n))) then S:=S union {f(n)}: fi: od:
MATHEMATICA
Select[Range[3, 3001, 2]^4-6, PrimeQ] (* Harvey P. Dale, Mar 03 2023 *)
CROSSREFS
Cf. A037896.
Sequence in context: A118467 A200812 A133207 * A335961 A202239 A010031
KEYWORD
nonn
AUTHOR
Patrick Devlin, Apr 25 2012
STATUS
approved