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.

A130292 Numbers that are sums of fifth powers of two distinct primes.

Original entry on oeis.org

275, 3157, 3368, 16839, 17050, 19932, 161083, 161294, 164176, 177858, 371325, 371536, 374418, 388100, 532344, 1419889, 1420100, 1422982, 1436664, 1580908, 1791150, 2476131, 2476342, 2479224, 2492906, 2637150, 2847392, 3895956
Offset: 1

Views

Author

Jonathan Vos Post, Aug 06 2007

Keywords

Comments

This is to 5th powers as A120398 is to cubes and A130873 is to 4th powers.

Examples

			a(1) = prime(1)^5 + prime(2)^5 = 2^5 + 3^5 = 32 + 243 = 275.
		

Crossrefs

Programs

  • Mathematica
    Select[Sort[ Flatten[Table[Prime[n]^5 + Prime[k]^5, {n, 15}, {k, n - 1}]]], # <= Prime[15^5] &]