login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A262203 Primes of the form k*(k+2)/3 - 3, k>2. 0
2, 5, 13, 37, 53, 173, 277, 317, 557, 613, 733, 797, 1237, 1493, 1973, 2293, 3533, 4253, 4877, 5717, 9293, 9973, 12157, 12413, 14557, 16573, 17477, 19037, 20333, 22013, 23053, 26317, 26693, 30197, 32237, 32653, 33493, 37853, 40597, 44893, 50957, 53597, 54133 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Primes p such that 3*p + 10 is a square.
LINKS
MAPLE
a(1) = 2 because 2*3 + 10 = 16, which is a square.
a(1) = 2 because 3*(3 + 2)/3 - 3 = 2 is prime.
MATHEMATICA
Select[Table[(k (k + 2))/3 - 3, {k, 2, 450}], PrimeQ]
PROG
(Magma) [a: k in [2..250] | IsPrime(a) where a is k*(k+2) div 3 - 3 ]; /* or */ [p: p in PrimesUpTo(60000) | IsSquare(3*p+10)];
(PARI) forprime(p=2, 1e5, if(issquare(3*p+10), print1(p , ", "))) \\ Altug Alkan, Dec 05 2015
CROSSREFS
Sequence in context: A038982 A266966 A019415 * A175118 A092395 A233281
KEYWORD
nonn,easy
AUTHOR
Vincenzo Librandi, Dec 05 2015
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified July 19 10:32 EDT 2024. Contains 374392 sequences. (Running on oeis4.)