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!)
A281548 Number of distinct monomials in the expansion of Product_{i=1..n} (y_1+...+y_i+x_i+x_{i+1}). 1
1, 3, 11, 46, 210, 1018, 5150, 26889, 143829, 784167, 4341843, 24348352, 138007784, 789375504, 4550522248 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
T. Amdeberhan, M. Alekseyev, Expanding into monomials, MathOverflow, 2017.
PROG
(SageMath)
def A281548(n):
R.<x> = PowerSeriesRing(ZZ)
return sum(sum(
( prod(1 + (1-2*x+O(x^(k+1)))^(-c[i]-1)
for i in range(n-k) )
) * (1-2*x+O(x^(k+1)))^(-(n-k-sum(c))-1) / 2^(n-k)
for c in map(lambda t: t.to_Catalan_code(), DyckWords(n-k)) )[k]
for k in range(n+1) )
CROSSREFS
Sequence in context: A287891 A371428 A233389 * A086521 A225293 A046996
KEYWORD
nonn,more
AUTHOR
Max Alekseyev, Jan 23 2017
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 September 17 05:28 EDT 2024. Contains 375985 sequences. (Running on oeis4.)