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.

A133532 Sum of fifth powers of three consecutive primes.

Original entry on oeis.org

3400, 20175, 180983, 549151, 1952201, 4267249, 10332299, 29423591, 55576643, 118484257, 213829309, 332208601, 492209651, 794548943, 1362464799, 1977716093, 2909645707, 3998950759, 5227426051, 6954357343, 9089168635
Offset: 1

Views

Author

Artur Jasinski, Sep 14 2007

Keywords

Examples

			a(1)=3400 because 2^5+3^5+5^5=3400.
		

Crossrefs

Programs

  • Mathematica
    a = 5; Table[Prime[n]^a + Prime[n + 1]^a + Prime[n + 2]^a, {n, 1, 100}]
    Total[#^5]&/@Partition[Prime[Range[30]],3,1] (* Harvey P. Dale, May 26 2011 *)

Formula

a(n) = A133536(n) + A050997(n+2). - Michel Marcus, Nov 09 2013