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.

Showing 1-5 of 5 results.

A133539 Sum of third powers of five consecutive primes.

Original entry on oeis.org

1834, 4023, 8909, 15643, 27467, 50525, 78119, 123859, 185921, 253261, 332695, 451781, 606507, 764567, 985823, 1239911, 1480051, 1767711, 2112517, 2516723, 3071485, 3712769, 4312457, 4965713, 5555773, 6085997, 7104079, 8259443
Offset: 1

Views

Author

Artur Jasinski, Sep 14 2007

Keywords

Examples

			a(1)=1834 because 2^3+3^3+5^3+7^3+11^3=1834.
		

Crossrefs

Programs

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

Formula

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

A133543 Sum of seventh powers of five consecutive primes.

Original entry on oeis.org

20391154, 83139543, 493476029, 1387269643, 4791271547, 22021660685, 49471526279, 143993064739, 337853466881, 606267252541, 1095640496695, 2242839022421, 4636558630107, 7584547192247, 13373440186463
Offset: 1

Views

Author

Artur Jasinski, Sep 14 2007

Keywords

Examples

			a(1)=20391154 because 2^7+3^7+5^7+7^7+11^7=20391154
		

Crossrefs

Programs

  • Mathematica
    a = 7; Table[Prime[n]^a + Prime[n + 1]^a + Prime[n + 2]^a + Prime[n + 3]^a + Prime[n + 4]^a, {n, 1, 100}]
    Total/@Partition[Prime[Range[20]]^7,5,1] (* Harvey P. Dale, Mar 05 2022 *)

A133540 Sum of fourth powers of five consecutive primes.

Original entry on oeis.org

17764, 46309, 129749, 259445, 536885, 1229525, 2124485, 3915125, 6610565, 9749525, 13921925, 20888885, 31132085, 42152165, 58884485, 79416485, 99924245, 126756965, 160369445, 202960565, 266078165, 341740325, 415341125, 498962405
Offset: 1

Views

Author

Artur Jasinski, Sep 14 2007

Keywords

Examples

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

Crossrefs

Programs

  • Mathematica
    a = 4; Table[Prime[n]^a + Prime[n + 1]^a + Prime[n + 2]^a + Prime[n + 3]^a + Prime[n + 4]^a, {n, 1, 100}]

Formula

a(n) = A133526(n) + A030514(n+4). - Michel Marcus, Nov 09 2013

A133541 Sum of fifth powers of five consecutive primes.

Original entry on oeis.org

181258, 552519, 1972133, 4445107, 10864643, 31214741, 59472599, 127396699, 240776801, 381348901, 590182759, 979749101, 1625329443, 2354069543, 3557186207, 5132070551, 6786946651, 9149078751, 12243523093, 16477457435
Offset: 1

Views

Author

Artur Jasinski, Sep 14 2007

Keywords

Examples

			a(1)=181258 because 2^5+3^5+5^5+7^5+11^5=181258.
		

Crossrefs

Programs

  • Mathematica
    a = 5; Table[Prime[n]^a + Prime[n + 1]^a + Prime[n + 2]^a + Prime[n + 3]^a + Prime[n + 4]^a, {n, 1, 100}]
    Total/@Partition[Prime[Range[30]]^5,5,1] (* Harvey P. Dale, Dec 02 2017 *)

Formula

a(n) = A133527(n) + A050997(n+4). - Michel Marcus, Nov 09 2013

A131686 Sum of squares of five consecutive primes.

Original entry on oeis.org

208, 373, 653, 989, 1469, 2189, 2981, 4061, 5381, 6701, 8069, 9917, 12029, 14069, 16709, 19541, 22061, 24821, 27989, 31421, 35789, 40661, 45029, 49589, 53549, 56909, 62837, 69389, 76709, 84149, 93581, 100253, 107741, 115541, 124109, 131837
Offset: 1

Views

Author

Artur Jasinski, Sep 14 2007

Keywords

Examples

			a(1)=208 because 2^2+3^2+5^2+7^2+11^2=208
		

Crossrefs

Programs

  • Mathematica
    a = 2; Table[Prime[n]^a + Prime[n + 1]^a + Prime[n + 2]^a + Prime[n + 3]^a + Prime[n + 4]^a, {n, 1, 100}]
Showing 1-5 of 5 results.