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!)
A221834 G.f.: Sum_{n>=1} x^n * (1-x^n)^(n-1) / (1-x)^(n-1). 1
1, 1, 2, 3, 7, 13, 27, 54, 111, 225, 456, 926, 1877, 3796, 7671, 15483, 31212, 62859, 126484, 254296, 510892, 1025765, 2058395, 4128578, 8277344, 16589180, 33237163, 66574351, 133318484, 266924608, 534335692, 1069492787, 2140370294, 4283071475, 8570061106 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
Conjecture: a(n) is the number of compositions of n if all single instances of the part 1 are frozen ([1]). Example: The compositions enumerated by a(5) = 13 are 5; 4,[1]; 3,2; 2,3; 3,1,1; 1,3,1; 1,1,3; 2,2,[1]; 2,1,1,1; 1,2,1,1; 1,1,2,1; 1,1,1,2; 1,1,1,1,1. - Gregory L. Simay, Oct 27 2022
LINKS
FORMULA
Equals row sums of triangle A221833.
EXAMPLE
G.f.: A(x) = x + x^2 + 2*x^3 + 3*x^4 + 7*x^5 + 13*x^6 + 27*x^7 + 54*x^8 + ...
where
A(x) = x + x^2*(1-x^2)/(1-x) + x^3*(1-x^3)^2/(1-x)^2 + x^4*(1-x^4)^3/(1-x)^3 + ...
or, equivalently,
A(x) = x + x^2*(1+x) + x^3*(1+x+x^2)^2 + x^4*(1+x+x^2+x^3)^3 + ...
PROG
(PARI) {a(n)=polcoeff(sum(k=1, n, x^k*((1-x^k)/(1-x) +x*O(x^n))^(k-1)), n)}
for(n=1, 40, print1(a(n), ", "))
CROSSREFS
Sequence in context: A344432 A088172 A048573 * A006946 A074129 A233042
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jan 26 2013
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 23:15 EDT 2024. Contains 371798 sequences. (Running on oeis4.)