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.

A022532 Nexus numbers (n+1)^16-n^16.

Original entry on oeis.org

1, 65535, 42981185, 4251920575, 148292923329, 2668522016831, 30411820662145, 248242046141055, 1571545212141185, 8146979811148159, 35949729863572161, 138934529031464255, 480532350288143425, 1512536728626191295, 4390455017903519489, 11878335717996660991
Offset: 0

Views

Author

Keywords

References

  • J. H. Conway and R. K. Guy, The Book of Numbers, Copernicus Press, NY, 1996, p. 54.

Crossrefs

Column k=15 of A047969.
Cf. A010804 (n^16).

Programs

  • Magma
    [(n+1)^16-n^16: n in [0..20]]; // Vincenzo Librandi, Nov 22 2011
    
  • Maple
    b:=16: a:=n->(n+1)^b-n^b: seq(a(n),n=0..18); # Muniru A Asiru, Feb 28 2018
  • Mathematica
    Table[(n+1)^16-n^16,{n,0,20}] (* Vincenzo Librandi, Nov 22 2011 *)
  • PARI
    for(n=0,20, print1((n+1)^16 - n^16, ", ")) \\ G. C. Greubel, Feb 27 2018

Formula

a(n) = A010804(n+1) - A010804(n). - Michel Marcus, Feb 28 2018

Extensions

More terms added by G. C. Greubel, Feb 27 2018