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!)
A289212 a(n) = n! * Laguerre(n,-6). 5

%I #26 May 07 2021 10:44:02

%S 1,7,62,654,7944,108696,1649232,27422352,495057024,9631281024,

%T 200682406656,4455296877312,104921038236672,2610989435003904,

%U 68430995893131264,1883330926998829056,54286270223002140672,1635031821385383247872,51347572582353094508544

%N a(n) = n! * Laguerre(n,-6).

%H Alois P. Heinz, <a href="/A289212/b289212.txt">Table of n, a(n) for n = 0..434</a>

%H Eric Weisstein's World of Mathematics, <a href="http://mathworld.wolfram.com/LaguerrePolynomial.html">Laguerre Polynomial</a>

%H Wikipedia, <a href="https://en.wikipedia.org/wiki/Laguerre_polynomials">Laguerre polynomials</a>

%H <a href="/index/La#Laguerre">Index entries for sequences related to Laguerre polynomials</a>

%F E.g.f.: exp(6*x/(1-x))/(1-x).

%F a(n) = n! * Sum_{i=0..n} 6^i/i! * binomial(n,i).

%F a(n) = n! * A160607(n)/A160608(n).

%F a(n) ~ exp(-3 + 2*sqrt(6*n) - n) * n^(n + 1/4) / (2^(3/4)*3^(1/4)) * (1 + 97/(16*sqrt(6*n))). - _Vaclav Kotesovec_, Nov 13 2017

%F Sum_{n>=0} a(n) * x^n / (n!)^2 = exp(x) * Sum_{n>=0} 6^n * x^n / (n!)^2. - _Ilya Gutkovskiy_, Jul 17 2020

%p a:= n-> n! * add(binomial(n, i)*6^i/i!, i=0..n):

%p seq(a(n), n=0..20);

%t Table[n!*LaguerreL[n, -6], {n, 0, 20}] (* _Indranil Ghosh_, Jul 04 2017 *)

%o (Python)

%o from mpmath import *

%o mp.dps=100

%o def a(n): return int(fac(n)*laguerre(n, 0, -6))

%o print([a(n) for n in range(21)]) # _Indranil Ghosh_, Jul 04 2017

%o (PARI) my(x = 'x + O('x^30)); Vec(serlaplace(exp(6*x/(1-x))/(1-x))) \\ _Michel Marcus_, Jul 04 2017

%o (PARI) a(n) = n!*pollaguerre(n, 0, -6); \\ _Michel Marcus_, Feb 05 2021

%Y Column k=6 of A289192.

%Y Cf. A160607, A160608.

%K nonn

%O 0,2

%A _Alois P. Heinz_, Jun 28 2017

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 19 16:38 EDT 2024. Contains 371794 sequences. (Running on oeis4.)