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.

A024131 a(n) = 11^n - n^4.

Original entry on oeis.org

1, 10, 105, 1250, 14385, 160426, 1770265, 19484770, 214354785, 2357941130, 25937414601, 285311655970, 3138428355985, 34522712115370, 379749833544825, 4177248169365026, 45949729863506625, 505447028499210250
Offset: 0

Views

Author

Keywords

Programs

  • Magma
    [11^n-n^4: n in [0..20]]; // Vincenzo Librandi, Jul 01 2011
    
  • Mathematica
    Table[11^n-n^4,{n,0,20}] (* or *) LinearRecurrence[{16,-65,120,-115,56,-11},{1,10,105,1250,14385,160426},20] (* Harvey P. Dale, Mar 13 2019 *)
  • PARI
    a(n)=11^n-n^4 \\ Charles R Greathouse IV, Jul 01 2011