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!)
A062149 Third column sequence of triangle A062138 (generalized a=5 Laguerre). 3
1, 24, 432, 7200, 118800, 1995840, 34594560, 622702080, 11675664000, 228324096000, 4657811558400, 99084354969600, 2196369868492800, 50685458503680000, 1216451004088320000, 30330178368602112000 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
E.g.f.: (1 + 14*x + 21*x^2)/(1 - x)^10.
a(n) = A062138(n+2, 2).
a(n) = (n+2)!*binomial(n+7, 7)/2!.
If we define f(n,i,x) = Sum_{k=i..n} Sum_{j=i..k} binomial(k,j) * Stirling1(n,k) * Stirling2(j,i) * x^(k-j), then a(n-2) = (-1)^n*f(n,2,-8), (n >= 2). - Milan Janjic, Mar 01 2009
EXAMPLE
a(2) = (2+2)! * binomial(2+7,7) / 2! = (24 * 36) / 2 = 432. - Indranil Ghosh, Feb 24 2017
MAPLE
a:=n-> (n+2)!*binomial(n+7, 7)/2!: seq(a(n), n=0..22); # Zerinvary Lajos, Apr 29 2007
MATHEMATICA
Table[(n+2)!*Binomial[n+7, 7]/2!, {n, 0, 15}] (* Indranil Ghosh, Feb 24 2017 *)
PROG
(PARI)a(n)=(n+2)!*binomial(n+7, 7)/2! \\ Indranil Ghosh, Feb 24 2017
(Python)
import math
f=math.factorial
def C(n, r):return f(n)/f(r)/f(n-r)
def A062149(n): return f(n+2)*C(n+7, 7)/f(2) # Indranil Ghosh, Feb 24 2017
(Magma) [Factorial(n+2)*Binomial(n+7, 7)/2: n in [0..20]]; // G. C. Greubel, May 12 2018
CROSSREFS
Cf. A062148.
Sequence in context: A264504 A081128 A059158 * A231318 A083195 A004358
KEYWORD
nonn,easy
AUTHOR
Wolfdieter Lang, Jun 19 2001
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 25 16:45 EDT 2024. Contains 371989 sequences. (Running on oeis4.)