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!)
A244728 a(n) = 9*n^3. 5
0, 9, 72, 243, 576, 1125, 1944, 3087, 4608, 6561, 9000, 11979, 15552, 19773, 24696, 30375, 36864, 44217, 52488, 61731, 72000, 83349, 95832, 109503, 124416, 140625, 158184, 177147, 197568, 219501, 243000, 268119, 294912, 323433, 353736, 385875, 419904 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Volume of a pyramid (square base) with side and height 3*n. - Wesley Ivan Hurt, Aug 25 2014
Volume of the smallest square cuboid containing a ring torus where the tube and hole diameters are both n. - Torlach Rush, Jun 04 2019
LINKS
FORMULA
G.f.: 9*x*(1 + 4*x + x^2)/(1 - x)^4.
a(n) = 4*a(n-1) - 6*a(n-2) + 4*a(n-3) - a(n-4) for n>3.
E.g.f.: 9*x*(1 + 3*x + x^2)*exp(x). - G. C. Greubel, Jun 30 2019
MAPLE
A244728:=n->9*n^3: seq(A244728(n), n=0..40); # Wesley Ivan Hurt, Aug 25 2014
MATHEMATICA
Table[9n^3, {n, 0, 40}] (* or *) CoefficientList[Series[9*x*(1+4*x+x^2)/(1- x)^4, {x, 0, 40}], x]
PROG
(Magma) [9*n^3: n in [0..40]] /* or */ I:=[0, 9, 72, 243]; [n le 4 select I[n] else 4*Self(n-1)-6*Self(n-2)+4*Self(n-3)-Self(n-4): n in [1..40]];
(PARI) vector(40, n, n--; 9*n^3) \\ G. C. Greubel, Jun 30 2019
(Sage) [9*n^3 for n in (0..40)] # G. C. Greubel, Jun 30 2019
(GAP) List([0..40], n-> 9*n^3) # G. C. Greubel, Jun 30 2019
CROSSREFS
Cf. similar sequences listed in A244725.
Cf. A287335 (see Crossrefs).
Sequence in context: A003365 A044196 A064201 * A069978 A070823 A073988
KEYWORD
nonn,easy
AUTHOR
Vincenzo Librandi, Jul 05 2014
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 24 16:34 EDT 2024. Contains 371961 sequences. (Running on oeis4.)