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.

A304397 a(n) = A304395(n) / (n+1)^5.

Original entry on oeis.org

1, 15, 9240, 42073400, 746084307150, 36924991021460826, 4160715480354842294820, 930665660288187073185443460, 374501250148595690153122892776875, 251774218429254711234735482839554308125, 266963725952364568003002013640838639863625156, 426348840739731769879201369387693893984897112621140, 987611583043183483323383128203849669908583985607235622200
Offset: 0

Views

Author

Paul D. Hanna, May 12 2018

Keywords

Crossrefs

Cf. A304395.

Programs

  • PARI
    /* A304395 formula: [x^n] exp( n^5*x ) * (1 - x*A(x)) = 0 */
    {A304395(n) = my(A=[1]); for(i=0, n, A=concat(A, 0); m=#A; A[m] = Vec( exp(x*m^5 +x^2*O(x^m)) * (1 - x*Ser(A)) )[m+1] ); A[n+1]}
    for(n=0, 25, print1( A304395(n)/(n+1)^5, ", "))

Formula

a(n) = (n+1)^(5*n)/(n+1)! - Sum_{k=1..n} (n+1)^(5*k-5)/k! * (n-k+1)^5 * a(n-k) for n>0 with a(0)=1.