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

A138691
Numbers of the form 68+p^2 (where p is a prime).
5
72, 77, 93, 117, 189, 237, 357, 429, 597, 909, 1029, 1437, 1749, 1917, 2277, 2877, 3549, 3789, 4557, 5109, 5397, 6309, 6957, 7989, 9477, 10269, 10677, 11517, 11949, 12837, 16197, 17229, 18837, 19389, 22269, 22869, 24717, 26637, 27957, 29997
OFFSET
1,1
COMMENTS
68 + p^2 is divisible by 3 for any prime p > 3. - M. F. Hasler
LINKS
MATHEMATICA
Table[2*34 + Prime[p + 1]^2, {p, 0, 100}]
Prime[Range[50]]^2+68 (* Harvey P. Dale, Oct 19 2011 *)
PROG
(PARI) forprime(p=1, 1e2, print1(68+p^2, ", ")) \\ Felix Fröhlich, Jul 07 2014
KEYWORD
nonn
AUTHOR
Artur Jasinski, Mar 26 2008
STATUS
approved