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.

A022816 Number of terms in 6th derivative of a function composed with itself n times.

Original entry on oeis.org

1, 11, 44, 121, 271, 532, 952, 1590, 2517, 3817, 5588, 7943, 11011, 14938, 19888, 26044, 33609, 42807, 53884, 67109, 82775, 101200, 122728, 147730, 176605, 209781, 247716, 290899, 339851, 395126, 457312, 527032, 604945, 691747
Offset: 1

Views

Author

Keywords

References

  • W. C. Yang (yang(AT)math.wisc.edu), Derivatives of self-compositions of functions, preprint, 1997.

Crossrefs

Programs

  • Magma
    [n*(n+1)*(n^3+24*n^2+81*n-46)/120: n in [1..40]]; // Vincenzo Librandi, Oct 10 2011
    
  • Mathematica
    Table[n(n+1)(n^3+24n^2+81n-46)/120,{n,40}] (* or *) LinearRecurrence[{6,-15,20,-15,6,-1},{1,11,44,121,271,532},40] (* Harvey P. Dale, Dec 29 2017 *)
  • PARI
    a(n)=n*(n+1)*(n^3+24*n^2+81*n-46)/120 \\ Charles R Greathouse IV, Oct 21 2022

Formula

a(n) = n*(n+1)*(n^3+24*n^2+81*n-46)/120. G.f.: x*(1+5*x-7*x^2+2*x^3)/(x-1)^6. - R. J. Mathar, Sep 15 2009

Extensions

More terms from Christian G. Bower, Aug 15 1999.