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!)
A085742 a(n) = T(n^3) - T(n), where T() are the triangular numbers (A000217). 1
0, 0, 33, 372, 2070, 7860, 23415, 58968, 131292, 266040, 500445, 886380, 1493778, 2414412, 3766035, 5696880, 8390520, 12071088, 17008857, 23526180, 32003790, 42887460, 56695023, 74023752, 95558100, 122077800, 154466325, 193719708 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = (n-1)*n*(n+1)*(n^3 + n + 1)/2.
EXAMPLE
a(3) = T(3^3) - T(3) = T(27) - T(3) = 378 - 6 = 372.
PROG
(PARI) t(n)=n*(n+1)/2; for(n=0, 50, print1(t(n^3)-t(n)", "))
(Magma) [(n-1)*n*(n+1)*(n^3+n+1)/2: n in [0..40]]; // Vincenzo Librandi, Sep 14 2011
CROSSREFS
Cf. A000217.
Sequence in context: A209359 A264282 A167963 * A244502 A202256 A324950
KEYWORD
nonn,easy
AUTHOR
Jon Perry, Jul 21 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 25 10:51 EDT 2024. Contains 371967 sequences. (Running on oeis4.)