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!)
A305115 O.g.f. A(x) satisfies: [x^n] exp( n * x*A(x) ) * (n^2 + 1 - A(x)) = 0 for n >= 0. 7

%I #10 Oct 06 2020 04:10:50

%S 1,1,14,450,31144,4041775,890769366,309205147860,159530833094816,

%T 116905524905145753,117339344873068964150,156605173710780053035502,

%U 271173392660354548224099528,596723380510396302812115056135,1639486267597614501043345413095854,5538914776834654404464150449671117000,22706307619073102796968257487359193429120

%N O.g.f. A(x) satisfies: [x^n] exp( n * x*A(x) ) * (n^2 + 1 - A(x)) = 0 for n >= 0.

%C Note: the factorial series, F(x) = Sum_{n>=0} n! * x^n, satisfies:

%C (1) [x^n] exp( n * x*F(x) ) * (2 - F(x)) = 0 for n > 0,

%C (2) [x^n] exp( x*F(x) ) * (n + 1 - F(x)) = 0 for n > 0.

%C It is remarkable that this sequence should consist entirely of integers.

%H Paul D. Hanna, <a href="/A305115/b305115.txt">Table of n, a(n) for n = 0..300</a>

%F a(n) ~ c * n!^3, where c = 2.49393609789981559563078907122202821077556480458411... - _Vaclav Kotesovec_, Oct 06 2020

%e O.g.f.: A(x) = 1 + x + 14*x^2 + 450*x^3 + 31144*x^4 + 4041775*x^5 + 890769366*x^6 + 309205147860*x^7 + 159530833094816*x^8 + 116905524905145753*x^9 + ...

%e ILLUSTRATION OF DEFINITION.

%e The table of coefficients of x^k/k! in exp( n * x*A(x) ) * (n^2 + 1 - A(x)) begins:

%e n=0: [0, -1, -28, -2700, -747456, -485013000, -641353943520, ...];

%e n=1: [1, 0, -27, -2702, -747963, -485118684, -641396951615, ...];

%e n=2: [4, 7, 0, -2092, -678784, -462055752, -623679177536, ...];

%e n=3: [9, 26, 101, 0, -460275, -391250658, -569892209247, ...];

%e n=4: [16, 63, 348, 4828, 0, -246538056, -461135488928, ...];

%e n=5: [25, 124, 837, 14150, 810509, 0, -277891671695, ...];

%e n=6: [36, 215, 1688, 30348, 2099712, 378224376, 0, ...];

%e n=7: [49, 342, 3045, 56548, 4020741, 920163738, 393372598609, 0, ...]; ...

%e in which the coefficients of x^n in row n form a diagonal of zeros.

%e RELATED SERIES.

%e exp(x*A(x)) = 1 + x + 3*x^2/2! + 91*x^3/3! + 11161*x^4/4! + 3793881*x^5/5! + 2933070331*x^6/6! + 4510118566003*x^7/7! + 12503335235913201*x^8/8! + ...

%o (PARI) {a(n) = my(A=[1], m); for(i=1, n, A=concat(A, 0); m=#A; A[m] = Vec( exp( (m-1)*x*(Ser(A)) ) * ((m-1)^2+1 - Ser(A)) )[m] ); A[n+1]}

%o for(n=0, 20, print1(a(n), ", "))

%Y Cf. A305110, A305114, A305116, A317337.

%K nonn

%O 0,3

%A _Paul D. Hanna_, May 26 2018

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 April 24 04:14 EDT 2024. Contains 371918 sequences. (Running on oeis4.)