OFFSET
0,3
COMMENTS
The initial terms 0 and 1 are included as to form the sequence of noncomposite integers k such that (2k)^4 + 1 is not composite, slightly more complete and/or general than the sequence restricted to primes.
The primes (2p)^4 + 1 with p > 2 are listed in A188717.
LINKS
James C. McMahon, Table of n, a(n) for n = 0..10000
FORMULA
a(n) = (A188717(n)-1)^(1/4) / 2, for n > 2.
MATHEMATICA
Join[{0, 1}, Select[Prime[Range[250]], PrimeQ[(2#)^4+1]&]] (* James C. McMahon, Nov 06 2025 *)
PROG
(PARI) concat([0, 1], [p | p<-primes(250), isprime(p^4<<4+1) ])
CROSSREFS
KEYWORD
nonn
AUTHOR
M. F. Hasler, Nov 02 2025
STATUS
approved
