OFFSET
1,1
COMMENTS
Or, primes obtained as a concatenation of a triangular number and 1.
Centered decagonal primes. - Paul Muljadi, Oct 04 2005
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 1..5000
Wikipedia, Centered decagonal number.
MATHEMATICA
Select[5(#^2 - #) + 1 & /@ Range[75], PrimeQ[ # ] &] (* Robert G. Wilson v, Oct 10 2005 *)
PROG
(Magma) [a: n in [0..100] | IsPrime(a) where a is 5*n^2 + 5*n + 1]; // Vincenzo Librandi, Dec 13 2011
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Amarnath Murthy, Dec 11 2003
EXTENSIONS
Edited and extended by Robert G. Wilson v, Oct 10 2005
STATUS
approved