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!)
A105252 a(n) = binomial(n+5,n)*binomial(n+9,n). 1
1, 60, 1155, 12320, 90090, 504504, 2312310, 9060480, 31286970, 97337240, 277411134, 733649280, 1818838840, 4261894560, 9502285320, 20271542016, 41572498275, 82281899700, 157706974425, 293570877600, 532097215650, 941124327000, 1627522854750, 2756636064000 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
Index entries for linear recurrences with constant coefficients, signature (15,-105,455,-1365,3003,-5005,6435,-6435,5005,-3003,1365,-455,105,-15,1).
FORMULA
G.f.: -(126*x^5+630*x^4+840*x^3+360*x^2+45*x+1)/(x-1)^15. - Colin Barker, Jan 21 2013
From Amiram Eldar, Sep 01 2022: (Start)
Sum_{n>=0} 1/a(n) = 7425*Pi^2/2 - 114902691/3136.
Sum_{n>=0} (-1)^n/a(n) = 28960047/15680 - 255*Pi^2/4 - 12288*log(2)/7. (End)
EXAMPLE
a(0): C(0+5,0)*C(0+9,0) = C(5,0)*C(9,0) = 1*1 = 1;
a(10): C(10+5,10)*C(10+9,10) = C(15,10)*(19,10) = 3003*92378 = 277411134.
MATHEMATICA
f[n_] := Binomial[n + 5, n]Binomial[n + 9, n]; Table[ f[n], {n, 0, 20}] (* Robert G. Wilson v, Apr 20 2005 *)
PROG
(Magma) [Binomial(n+5, n)*Binomial(n+9, n): n in [0..30]]; // Vincenzo Librandi, Jul 31 2015
(Python)
A105252_list, m = [], [2002, -4433, 3487, -1133, 127, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
for _ in range(10**2):
A105252_list.append(m[-1])
for i in range(14):
m[i+1] += m[i] # Chai Wah Wu, Dec 15 2015
CROSSREFS
Sequence in context: A056352 A056346 A283722 * A269138 A146347 A289156
KEYWORD
easy,nonn
AUTHOR
Zerinvary Lajos, Apr 14 2005
EXTENSIONS
More terms from Robert G. Wilson v, Apr 20 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 23 03:30 EDT 2024. Contains 371906 sequences. (Running on oeis4.)