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.

A247099 Numbers which are the sum or difference of two fifth powers.

Original entry on oeis.org

0, 1, 2, 31, 32, 33, 64, 211, 242, 243, 244, 275, 486, 781, 992, 1023, 1024, 1025, 1056, 1267, 2048, 2101, 2882, 3093, 3124, 3125, 3126, 3157, 3368, 4149, 4651, 6250, 6752, 7533, 7744, 7775, 7776, 7777, 7808, 8019, 8800, 9031, 10901, 13682, 15552, 15783, 15961
Offset: 1

Views

Author

Keywords

Examples

			31 = 2^5 - 1^5, 32 = 2^5 + 0^5, 33 = 2^5 + 1^5.
		

Crossrefs

Programs

  • Mathematica
    Union[Flatten[{Total[#],Abs[#[[2]]-#[[1]]]}&/@Tuples[Range[0,10]^5,2]]] (* Harvey P. Dale, Mar 30 2015 *)
  • PARI
    T=thueinit('z^5+1);
    is(n)=n==0 || #thue(T, n)>0

Formula

a(n) << n^(5/2). Can this be improved?