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!)
A081907 A sequence related to binomial(n+2, 2). 2
1, 8, 61, 450, 3240, 22896, 159408, 1096416, 7464960, 50388480, 337602816, 2247326208, 14874679296, 97955205120, 642150789120, 4192482779136, 27270729105408, 176789554200576, 1142549512519680, 7363096858460160 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Binomial transform of A081894.
5th binomial transform of binomial(n+2, 2), A000217.
6th binomial transform of (1,2,1,0,0,0,...).
LINKS
FORMULA
a(n) = 6^n*(n^2 + 23*n + 72)/72.
G.f.: (1-5*x)^2/(1-6*x)^3.
E.g.f.: (2 + 4*x + x^2)*exp(6*x)/2. - G. C. Greubel, Oct 17 2018
MAPLE
seq(coeff(series((1-5*x)^2/(1-6*x)^3, x, n+1), x, n), n = 0 .. 20); # Muniru A Asiru, Oct 18 2018
MATHEMATICA
Table[6^n*(n^2+23*n+72)/72, {n, 0, 50}] (* or *) LinearRecurrence[{18, -108, 216}, {1, 8, 61}, 50] (* G. C. Greubel, Oct 17 2018 *)
PROG
(PARI) vector(50, n, n--; 6^n*(n^2 +23*n +72)/72) \\ G. C. Greubel, Oct 17 2018
(Magma) [6^n*(n^2 +23*n +72)/72: n in [0..50]]; // G. C. Greubel, Oct 17 2018
(GAP) List([1..20], n->6^(n-1)*(n^2+21*n+50))/72; # Muniru A Asiru, Oct 18 2018
CROSSREFS
Sequence in context: A247535 A283852 A283410 * A278596 A190976 A254602
KEYWORD
easy,nonn
AUTHOR
Paul Barry, Mar 30 2003
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 June 4 19:35 EDT 2024. Contains 373102 sequences. (Running on oeis4.)