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.

A016840 a(n) = (4*n+3)^4.

Original entry on oeis.org

81, 2401, 14641, 50625, 130321, 279841, 531441, 923521, 1500625, 2313441, 3418801, 4879681, 6765201, 9150625, 12117361, 15752961, 20151121, 25411681, 31640625, 38950081, 47458321, 57289761
Offset: 0

Views

Author

Keywords

Programs

  • Mathematica
    (4*Range[0,30]+3)^4 (* or *) LinearRecurrence[{5,-10,10,-5,1},{81,2401,14641,50625,130321},30] (* Harvey P. Dale, Dec 08 2011 *)

Formula

a(n) = 5*a(n-1)- 10*a(n-2)+10*a(n-3)-5*a(n-4)+a(n-5). - Harvey P. Dale, Dec 08 2011