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.

A133534 Sum of third powers of two consecutive primes.

Original entry on oeis.org

35, 152, 468, 1674, 3528, 7110, 11772, 19026, 36556, 54180, 80444, 119574, 148428, 183330, 252700, 354256, 432360, 527744, 658674, 746928, 882056, 1064826, 1276756, 1617642, 1942974, 2123028, 2317770, 2520072, 2737926, 3491280
Offset: 1

Views

Author

Artur Jasinski, Sep 14 2007

Keywords

Examples

			a(1)=35 because 2^3+3^3=35.
		

Crossrefs

Programs

  • Mathematica
    a = 3; Table[Prime[n]^a + Prime[n + 1]^a, {n, 1, 100}]
    Total[#^3]&/@Partition[Prime[Range[50]],2,1] (* Harvey P. Dale, Jan 29 2021 *)

Formula

a(n) = A030078(n) + A030078(n+1). - Michel Marcus, Nov 09 2013