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.

A170794 a(n) = n^10*(n^2 + 1)/2.

Original entry on oeis.org

0, 1, 2560, 295245, 8912896, 126953125, 1118624256, 7061881225, 34896609280, 142958160441, 505000000000, 1582182900661, 4489008906240, 11717971807165, 28491583515136, 65161494140625, 141287244169216, 292319115565105
Offset: 0

Views

Author

N. J. A. Sloane, Dec 11 2009

Keywords

Programs

  • Magma
    [n^10*(n^2+1)/2: n in [0..20]]; // Vincenzo Librandi, Aug 26 2011
    
  • Mathematica
    Table[n^10*(n^2+1)/2, {n,0,30}] (* G. C. Greubel, Dec 06 2017 *)
  • PARI
    for(n=0,30, print1(n^10*(n^2+1)/2, ", ")) \\ G. C. Greubel, Dec 30 2017

Formula

G.f.: (x + 2547*x^2 + 262043*x^3 + 5274105*x^4 + 33383142*x^5 + 80828562*x^6 + 80828562*x^7 + 33383142*x^8 + 5274105*x^9 + 262043*x^10 + 2547*x^11 + x^12)/(1-x)^13. - G. C. Greubel, Dec 06 2017