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.

A022534 Nexus numbers (n+1)^18 - n^18.

Original entry on oeis.org

1, 262143, 387158345, 68332056247, 3745977788889, 97745259402791, 1526853641242033, 16385984911571535, 132080236787517137, 849905364703000879, 4559917313492231481, 21063415967393012423, 85832073671072149225, 314423447258679349527, 1051013025824763647969
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=17 of A047969.
Cf. A010806 (n^18).

Programs

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

Formula

a(n) = A010806(n+1) - A010806(n). - Michel Marcus, Feb 27 2018

Extensions

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