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.

A001596 a(n) = 7^n + n^7.

Original entry on oeis.org

1, 8, 177, 2530, 18785, 94932, 397585, 1647086, 7861953, 45136576, 292475249, 1996813914, 13877119009, 96951758924, 678328486353, 4747732369318, 33233199005057, 232630924325880, 1628414210130481
Offset: 0

Views

Author

Keywords

Crossrefs

Programs

  • Magma
    [7^n+n^7: n in [0..30]]; // Vincenzo Librandi, Oct 27 2011
  • Maple
    seq(seq(k^n+n^k, k=7..7), n=0..18); # Zerinvary Lajos, Jun 29 2007
  • Mathematica
    f[n_]:=7^n+n^7;f[Range[0,40]] (* Vladimir Joseph Stephan Orlovsky, Feb 14 2011 *)
    LinearRecurrence[{15,-84,252,-462,546,-420,204,-57,7},{1,8,177,2530,18785,94932,397585,1647086,7861953},20] (* Harvey P. Dale, Sep 16 2018 *)
  • PARI
    a(n)=7^n+n^7