cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A133526 Sum of fourth powers of four consecutive primes.

Original entry on oeis.org

3123, 17748, 46228, 129124, 257044, 522244, 1200964, 2040964, 3784804, 6330724, 9042244, 12998404, 19014724, 28306324, 38733364, 54004804, 71526004, 87806884, 112911124, 140218324, 177548884, 237679924, 302790244, 367882804, 436220164
Offset: 1

Views

Author

Artur Jasinski, Sep 14 2007

Keywords

Examples

			a(1)=3123 because 2^4+3^4+5^4+7^4=3123.
		

Crossrefs

Programs

  • Mathematica
    a = 4; Table[Prime[n]^a + Prime[n + 1]^a + Prime[n + 2]^a + Prime[n + 3]^a, {n, 1, 100}]
    Total/@Partition[Prime[Range[30]]^4,4,1] (* Harvey P. Dale, Sep 09 2014 *)
  • PARI
    a(n)=sum(i=n,n+3,prime(i)^4) \\ Charles R Greathouse IV, Apr 29 2015

Formula

a(n) = A133531(n) + A030514(n+3). - Michel Marcus, Nov 08 2013
a(n) ~ 4n^4 log^4 n. - Charles R Greathouse IV, Apr 29 2015