|
| |
|
|
A133560
|
|
Primes which have partition as sum of squares of the seven consecutive primes.
|
|
1
| |
|
|
1543, 3271, 4519, 7591, 9439, 11719, 23599, 39631, 45319, 51031, 56599, 90199, 151471, 173359, 210319, 222919, 235159, 261463, 313879, 367711, 402511, 459223, 478831, 499711, 610567, 634327, 732967, 760519, 819319, 883087, 939439, 968959
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 1,1
|
|
|
COMMENTS
| For sum of squares of two consecutive primes only 2^2+3^2=13 is prime. For sum of squares of three consecutive primes A133529 seems that only 83 belonging(checked for all n<1000000). Sums of squares of four (and all even number) of consecutive primes are even numbers with exception n=1 but 2^2+3^2+5^2+7^2=87=3*29 is not prime. Sums of squares of five of consecutive primes A133559.
|
|
|
EXAMPLE
| a(3)=4519 because 13^2+17^2+19^2+23^2+29^2+31^2+37^2=4519 is prime
|
|
|
MATHEMATICA
| b = {}; a = 2; Do[k = Prime[n]^a + Prime[n + 1]^a + Prime[n + 2]^a + Prime[n + 3]^a + Prime[n + 4]^a + Prime[n + 5]^a + Prime[n + 6]^a; If[PrimeQ[k], AppendTo[b, k]], {n, 1, 100}]; b {*Artur Jasinski*)
|
|
|
CROSSREFS
| Cf. A133538, A133558, A133559, A133561.
Sequence in context: A203134 A083734 A137598 * A038009 A090209 A157347
Adjacent sequences: A133557 A133558 A133559 * A133561 A133562 A133563
|
|
|
KEYWORD
| nonn
|
|
|
AUTHOR
| Artur Jasinski (grafix(AT)csl.pl), Sep 16 2007
|
| |
|
|