|
| |
|
|
A055472
|
|
Primes of the form k(k+1)/2+2 (i.e. two more than a triangular number).
|
|
5
| |
|
|
2, 3, 5, 17, 23, 47, 107, 173, 233, 353, 467, 563, 743, 863, 1277, 1433, 1487, 2213, 2417, 2777, 3083, 3323, 4007, 4373, 5153, 7877, 8387, 10733, 11177, 11783, 13043, 13697, 14537, 15053, 15227, 17207, 17393, 17957, 18917, 21323, 22157, 23873
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 1,1
|
|
|
MAPLE
| P:=proc(n) local i, w; w:=2; for i from 0 by 1 to n do w:=w+i; if isprime(w) then print(w); fi; od; end: P(1000); - Paolo P. Lava (paoloplava(AT)gmail.com), Apr 24 2007
|
|
|
MATHEMATICA
| s=0; lst={}; Do[s+=n; p=s+2; If[PrimeQ[p], AppendTo[lst, p]], {n, 0, 6!}]; lst [From Vladimir Orlovsky (4vladimir(AT)gmail.com), Apr 03 2009]
|
|
|
CROSSREFS
| Cf. A000040, A000217, A022856.
Sequence in context: A180474 A155978 A106859 * A077499 A127061 A065725
Adjacent sequences: A055469 A055470 A055471 * A055473 A055474 A055475
|
|
|
KEYWORD
| nonn
|
|
|
AUTHOR
| Henry Bottomley (se16(AT)btinternet.com), Jun 27 2000
|
| |
|
|