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.

A165347 Primes which are sum of at least two consecutive fourth powers.

Original entry on oeis.org

17, 97, 337, 353, 881, 3697, 7793, 10657, 16561, 24979, 37699, 45377, 49297, 66977, 89041, 149057, 588737, 721687, 847601, 988417, 1146097, 1146727, 1603073, 1972097, 1975333, 2131937, 2522257, 2700979, 2782097, 2836961, 3553777
Offset: 1

Views

Author

Keywords

Examples

			17=2^4+1^4, 97=3^4+2^4, ...
37699 = 7^4 +..+ 11^4, .. , 17351662206054298079 = 27563^4 +..+ 27592^4. - _Chai Wah Wu_, Feb 02 2016
		

Crossrefs

Cf. A163251.
Subsequence of A217844. - Chai Wah Wu, Jan 29 2016

Programs

  • Mathematica
    lst={};Do[p=m^4;Do[p+=n^4;If[PrimeQ[p]&&p<=9767999,AppendTo[lst,p]],{n,m+1,6!,1}],{m,6!}];Union@lst