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!)
A102773 a(n) = Sum_{i=0..n} binomial(n,i)^2*i!*4^i. 7
1, 5, 49, 709, 13505, 318181, 8916145, 289283429, 10656031489, 439039941445, 19995858681521, 997184081617285, 54026137182982849, 3159127731435043109, 198258247783634075185, 13289190424904891606821, 947419111092028780186625 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
Z. Li, Z. Li and Y. Cao, Enumeration of symplectic and orthogonal injective partial transformations, Discrete Math., 306 (2006), 1781-1787. (The function s_n.)
FORMULA
E.g.f.: (1/(1-4x))*exp(x/(1-4x)).
a(n) = (8*n-3)*a(n-1) - 16*(n-1)^2*a(n-2). - Vaclav Kotesovec, Oct 09 2013
a(n) ~ n^(n+1/4) * exp(sqrt(n)-n-1/8) * 4^n * (1 + 37/(96*sqrt(n))). - Vaclav Kotesovec, Oct 09 2013
Sum_{n>=0} a(n) * x^n / (n!)^2 = exp(4*x) * BesselI(0,2*sqrt(x)). - Ilya Gutkovskiy, Jul 17 2020
MAPLE
seq(sum('binomial(k, i)^2*i!*4^i', 'i'=0..k), k=0..30);
MATHEMATICA
f[n_] := Sum[k!*4^k*Binomial[n, k]^2, {k, 0, n}]; Table[ f[n], {n, 0, 16}] (* or *)
Range[0, 16]! CoefficientList[ Series[1/(1 - 4x)*Exp[x/(1 - 4x)], {x, 0, 16}], x] (* Robert G. Wilson v, Mar 16 2005 *)
PROG
(PARI) a(n)=my(t=1); sum(i=1, n, t*=i; binomial(n, i)^2*t<<(2*i), 1) \\ Charles R Greathouse IV, Oct 23 2023
CROSSREFS
Sequence in context: A267220 A052142 A136729 * A028575 A368438 A006554
KEYWORD
easy,nonn
AUTHOR
Miklos Kristof, Mar 16 2005
EXTENSIONS
More terms from Robert G. Wilson v, Mar 16 2005
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 April 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)