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!)
A345969 Expansion of the e.g.f. 1 / sqrt(3 - 2 / ((1 - x)*exp(x))). 4

%I #15 Jul 03 2021 02:08:56

%S 1,0,1,2,18,104,1015,9666,116557,1504856,22300704,358916480,

%T 6373675825,122332173300,2540560235161,56558354414870,

%U 1346402030278050,34093192112537888,915570658175517151,25983157665663651150,777141557158947654637,24430880483991543481580

%N Expansion of the e.g.f. 1 / sqrt(3 - 2 / ((1 - x)*exp(x))).

%F E.g.f. y(x) satisfies y' = exp(-x)*y^3*x/(1-x)^2.

%F a(0)=1, a(n) = Sum_{k=1..floor(n/2)} A305404(k)*A008306(n,k) for n > 0.

%F For all p prime, a(p) == -1 (mod p).

%F a(n) ~ sqrt(-2*LambertW(-2*exp(-1)/3)/3) * n^n / (exp(n) * (1 + LambertW(-2*exp(-1)/3))^(n+1)). - _Vaclav Kotesovec_, Jul 01 2021

%e 1/sqrt(3-2/((1-x)*exp(x))) = 1 + x^2/2! + 2*x^3/3! + 18*x^4/4! + 104*x^5/5! + 1015*x^6/6! + 9666*x^7/7! + 116557*x^8/8! + 1504856*x^9/9! + ...

%e a(17) = Sum_{k=1..8} A305404(k)*A008306(17,k) = 34093192112537888.

%e For k=1, A305404(1)*A008306(17,1) == -1 (mod 17), because A305404(1) = 1 and A008306(17,1) = (17-1)!

%e For k>=2, A305404(k)*A008306(17,k) == 0 (mod 17), because A008306(17,k) == 0 (mod 17), result a(17) == -1 (mod 17).

%p A305404:= n-> add(Stirling2(n,k)*doublefactorial(2*k-1), k=0..n):

%p A008306 := proc(n, k): if k=1 then (n-1)! ; elif n<=2*k-1 then 0; else (n-1)*procname(n-1, k)+(n-1)*procname(n-2, k-1) ; end if; end proc:

%p a := n-> add((A305404(k)*A008306(n, k)), k=1..iquo(n,2)):a(0):=1 ; seq(a(n), n=0..24);

%p # second program:

%p a := series(1/sqrt(3-2/((1-x)*exp(x))), x=0, 25):seq(n!*coeff(a, x, n), n=0..24);

%t CoefficientList[Series[1/Sqrt[3-2/((1-x)*E^x)], {x, 0, 24}], x] * Range[0, 24]!

%o (PARI) my(x='x+O('x^30)); Vec(serlaplace(1/sqrt(3 - 2 / ((1 - x)*exp(x))))) \\ _Michel Marcus_, Jul 01 2021

%Y Cf. A000166, A008306, A305404, A327006, A345697.

%K nonn

%O 0,4

%A _Mélika Tebni_, Jul 01 2021

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 May 11 22:00 EDT 2024. Contains 372431 sequences. (Running on oeis4.)