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!)
A086603 a(n) = n^3*3^(n-1). 3
0, 1, 24, 243, 1728, 10125, 52488, 250047, 1119744, 4782969, 19683000, 78594219, 306110016, 1167575877, 4374822312, 16142520375, 58773123072, 211488540273, 753145430616, 2657317134051, 9298091736000, 32291110337661 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Binomial transform of A086604. Second binomial transform of A086605.
LINKS
FORMULA
From G. C. Greubel, Feb 08 2020: (Start)
G.f.: x*(1 + 12*x + 9*x^2)/(1-3*x)^4.
E.g.f.: x*(1 + 9*x + 9*x^2)*exp(x). (End)
MAPLE
seq( 3^(n-1)*n^3, n=0..30); # G. C. Greubel, Feb 08 2020
MATHEMATICA
Table[n^3 3^(n-1), {n, 0, 30}] (* Harvey P. Dale, Mar 12 2011 *)
PROG
(PARI) vector(31, n, my(m=n-1); 3^(m-1)*m^3) \\ G. C. Greubel, Feb 08 2020
(Magma) [3^(n-1)*n^3: n in [0..30]]; // G. C. Greubel, Feb 08 2020
(Sage) [3^(n-1)*n^3 for n in (0..30)] # G. C. Greubel, Feb 08 2020
(GAP) List([0..30], n-> 3^(n-1)*n^3 ); # G. C. Greubel, Feb 08 2020
CROSSREFS
Sequence in context: A052652 A052732 A267060 * A304835 A281076 A300397
KEYWORD
easy,nonn
AUTHOR
Paul Barry, Jul 23 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 April 19 21:09 EDT 2024. Contains 371798 sequences. (Running on oeis4.)