The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A129460 Third column (m=2) of triangle A129065. 3
1, 10, 156, 3696, 125280, 5780160, 349090560, 26760222720, 2540101939200, 292579402752000, 40213832085504000, 6502800338141184000, 1222285449585328128000, 264279998869470904320000 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
See A129065 for the M. Bruschi et al. reference.
LINKS
FORMULA
a(n) = A129065(n+2, 2), n >= 0.
MATHEMATICA
T[n_, k_]:= T[n, k]= If[k<0 || k>n, 0, If[n==0, 1, 2*(n-1)^2*T[n-1, k] - 4*Binomial[n-1, 2]^2*T[n-2, k] +T[n-1, k-1] ]]; (* T=A129065 *)
A129460[n_]:= T[n+2, 2];
Table[A129460[n], {n, 0, 40}] (* G. C. Greubel, Feb 08 2024 *)
PROG
(Magma)
function T(n, k) // T = A129065
if k lt 0 or k gt n then return 0;
elif n eq 0 then return 1;
else return 2*(n-1)^2*T(n-1, k) - 4*Binomial(n-1, 2)^2*T(n-2, k) + T(n-1, k-1);
end if;
end function;
A129460:= func< n | T(n+2, 2) >;
[A129460(n): n in [0..20]]; // G. C. Greubel, Feb 08 2024
(SageMath)
@CachedFunction
def T(n, k): # T = A129065
if (k<0 or k>n): return 0
elif (n==0): return 1
else: return 2*(n-1)^2*T(n-1, k) - 4*binomial(n-1, 2)^2*T(n-2, k) + T(n-1, k-1)
def A129460(n): return T(n+2, 2)
[A129460(n) for n in range(41)] # G. C. Greubel, Feb 08 2024
CROSSREFS
Cf. A129065, A129459 (m=1), A129461 (m=3).
Sequence in context: A246239 A235340 A306034 * A200989 A268883 A283721
KEYWORD
nonn,easy
AUTHOR
Wolfdieter Lang, May 04 2007
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 May 15 04:08 EDT 2024. Contains 372536 sequences. (Running on oeis4.)