login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A304397 a(n) = A304395(n) / (n+1)^5. 1
1, 15, 9240, 42073400, 746084307150, 36924991021460826, 4160715480354842294820, 930665660288187073185443460, 374501250148595690153122892776875, 251774218429254711234735482839554308125, 266963725952364568003002013640838639863625156, 426348840739731769879201369387693893984897112621140, 987611583043183483323383128203849669908583985607235622200 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
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.
PROG
(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, ", "))
CROSSREFS
Cf. A304395.
Sequence in context: A198979 A249967 A308156 * A206593 A200794 A230173
KEYWORD
nonn
AUTHOR
Paul D. Hanna, May 12 2018
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified July 16 08:10 EDT 2024. Contains 374345 sequences. (Running on oeis4.)