|
| |
|
|
A133549
|
|
Sum of the fourth powers of the first n odd primes.
|
|
1
| |
|
|
81, 706, 3107, 17748, 46309, 129830, 260151, 539992, 1247273, 2170794, 4044955, 6870716, 10289517, 15169198, 23059679, 35177040, 49022881, 69174002, 94585683, 122983924, 161934005, 209392326, 272134567, 360663848, 464724249, 577275130
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 1,1
|
|
|
COMMENTS
| A133548(n)=A122102(n+1)-16
|
|
|
EXAMPLE
| a(2)=706 because 3^4 + 5^4 = 706.
|
|
|
MAPLE
| a:=proc (n) options operator, arrow: add(ithprime(j)^4, j=2..n+1) end proc: seq(a(n), n=1..26); - Emeric Deutsch (deutsch(AT)duke.poly.edu), Oct 02 2007
|
|
|
MATHEMATICA
| c = 4; a = {}; b = 0; Do[b = b + Prime[n]^c; AppendTo[a, b], {n, 2, 1000}]; a {*Artur Jasinski*)
|
|
|
CROSSREFS
| Cf. A007148, A007504, A024450, A098999, A122102, A133547, A133548, A133550, A133551, A133552.
Sequence in context: A187441 A187433 A185366 * A090257 A066431 A206086
Adjacent sequences: A133546 A133547 A133548 * A133550 A133551 A133552
|
|
|
KEYWORD
| nonn
|
|
|
AUTHOR
| Artur Jasinski (grafix(AT)csl.pl), Sep 16 2007
|
| |
|
|