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!)
A351800 a(n) = [x^n] 1/Product_{j=1..n} (1 - j^3*x). 2
1, 1, 73, 28800, 33120201, 83648533275, 393764054984212, 3103381708489548640, 37965284782803741391413, 681476650259874114533077575, 17184647574689079046814198039765, 588057239856779143071625300022102376, 26548105106818292578525347802793561068860 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = Sum_{p in {1..n}^n : p_i <= p_{i+1}} Product_{j=1..n} p_j^3.
a(n) = A098436(2n-1,n-1) = A269948(2n,n).
EXAMPLE
a(2) = (1*1)^3 + (1*2)^3 + (2*2)^3 = 1 + 8 + 64 = 73.
MAPLE
b:= proc(n, k) option remember; `if`(k=0, 1,
add(b(j, k-1)*j^3, j=1..n))
end:
a:= n-> b(n$2):
seq(a(n), n=0..15);
CROSSREFS
Sequence in context: A070531 A274591 A232293 * A364440 A232366 A183490
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Feb 19 2022
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 15:57 EDT 2024. Contains 371961 sequences. (Running on oeis4.)