OFFSET
1,2
COMMENTS
Note the sets of 3 consecutive numbers starting with 4, 29, 44, 64, 109, 174, ..., these numbers are congruent to 4 mod 5; cf. A255635.
MAPLE
A255634:=n->`if`(isprime(1+16*n^2), n, NULL): seq(A255634(n), n=1..300); # Wesley Ivan Hurt, Feb 28 2015
MATHEMATICA
Select[Range[400], PrimeQ[16 #^2 + 1] &] (* Vincenzo Librandi, Mar 03 2015 *)
PROG
(PARI) select(n->isprime(1+16*n^2), vector(300, n, n)) \\ Colin Barker, Mar 01 2015
(Magma) [n: n in [0..300] | IsPrime(16*n^2+1)]; // Vincenzo Librandi, Mar 03 2015
CROSSREFS
KEYWORD
nonn
AUTHOR
Zak Seidov, Feb 28 2015
STATUS
approved