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!)
A060061 Fourth column of triangle A060058. 6
61, 1385, 12284, 68060, 281210, 948002, 2749340, 7097948, 16700255, 36419955, 74551048, 144631240, 267951892, 476948260, 819683560, 1365672424, 2213323585, 3499318141, 5410278500, 8197124100 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
COMMENTS
a(n)= sum(j3^2*sum(j2^2*sum(j1^2,j1=1..j2+1),j2=1..j3+1),j3=1..n), threefold iterated sums of squares).
LINKS
FORMULA
a(n)=A060058(n+3, 3) = binomial(n+6, 6)*(280*n^3+2436*n^2+5906*n+3843)/(7*9).
G.f. (61+775*x+1179*x^2+225*x^3)/(1-x)^10 = p(3, x)/(1-x)^(3*3+1) with p(3, x)=sum(A060063(3, m)*x^m, m=0..3).
MATHEMATICA
Table[Binomial[n+6, 6]*(280*n^3+2436*n^2+5906n+3843)/63, {n, 0, 19}] (* Indranil Ghosh, Feb 21 2017 *)
PROG
(Python)
import math
def C(n, r):
....f=math.factorial
....return f(n)/f(r)/f(n-r)
def A060061(n):
....return (C(n+6, 6)*(280*n**3+2436*n**2+5906*n+3843))/63 # Indranil Ghosh, Feb 21 2017
CROSSREFS
Sequence in context: A218112 A154428 A262017 * A000507 A350974 A143011
KEYWORD
nonn,easy
AUTHOR
Wolfdieter Lang, Mar 16 2001
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 05:19 EDT 2024. Contains 371782 sequences. (Running on oeis4.)