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!)
A116164 a(n) = 6^n * n*(n+1). 1
0, 12, 216, 2592, 25920, 233280, 1959552, 15676416, 120932352, 906992640, 6651279360, 47889211392, 339578044416, 2377046310912, 16456474460160, 112844396298240, 767341894828032, 5179557790089216, 34733505180598272 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
G.f.: 12*x/(1-6*x)^3. - Vincenzo Librandi, Feb 28 2013
a(n) = 18*a(n-1) - 108*a(n-2) + 216*a(n-3). - Vincenzo Librandi, Feb 28 2013
a(n) = 12*A081136(n+1). - Bruno Berselli, Feb 28 2013
E.g.f.: 12*x*(1 + 3*x)*exp(6*x). - G. C. Greubel, May 10 2019
From Amiram Eldar, Jul 20 2020: (Start)
Sum_{n>=1} 1/a(n) = 1 - 5*log(6/5).
Sum_{n>=1} (-1)^(n+1)/a(n) = 7*log(7/6) - 1. (End)
MATHEMATICA
Table[(n^2 + n) 6^n, {n, 0, 30}] (* or *) CoefficientList[Series[12 x/(1 - 6 x)^3, {x, 0, 30}], x] (* Vincenzo Librandi, Feb 28 2013 *)
PROG
(Magma) [(n^2+n)*6^n: n in [0..30]]; /* or */ I:=[0, 12, 216]; [n le 3 select I[n] else 18*Self(n-1)-108*Self(n-2)+216*Self(n-3): n in [1..30]]; // Vincenzo Librandi, Feb 28 2013
(PARI) a(n)=(n^2+n)*6^n \\ Charles R Greathouse IV, Feb 28 2013
(Sage) [6^n*n*(n+1) for n in (0..30)] # G. C. Greubel, May 10 2019
(GAP) List([0..30], n-> 6^n*n*(n+1) ) # G. C. Greubel, May 10 2019
CROSSREFS
Sequence in context: A276245 A241225 A274956 * A268369 A091266 A119309
KEYWORD
nonn,easy
AUTHOR
Mohammad K. Azarian, Apr 08 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 April 19 06:44 EDT 2024. Contains 371782 sequences. (Running on oeis4.)