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!)
A227277 G.f.: Sum_{n>=0} x^n * (1+x)^A007814(n), where A007814(n) is the exponent of the highest power of 2 dividing n. 3
1, 1, 1, 2, 1, 3, 2, 2, 1, 4, 4, 3, 1, 3, 2, 2, 1, 5, 7, 6, 2, 3, 2, 2, 1, 4, 4, 3, 1, 3, 2, 2, 1, 6, 11, 12, 6, 4, 2, 2, 1, 4, 4, 3, 1, 3, 2, 2, 1, 5, 7, 6, 2, 3, 2, 2, 1, 4, 4, 3, 1, 3, 2, 2, 1, 7, 16, 22, 16, 9, 3, 2, 1, 4, 4, 3, 1, 3, 2, 2, 1, 5, 7, 6, 2, 3, 2, 2, 1, 4, 4, 3, 1, 3, 2, 2, 1, 6, 11, 12, 6, 4, 2, 2, 1, 4, 4, 3, 1, 3, 2, 2, 1, 5, 7, 6, 2, 3, 2, 2, 1, 4, 4, 3, 1, 3, 2, 2, 1 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
a(4*A004772(n)) = 1 where A004772 lists numbers that are not congruent to 1 mod 4.
EXAMPLE
G.f.: A(x) = 1 + x + x^2 + 2*x^3 + x^4 + 3*x^5 + 2*x^6 + 2*x^7 + x^8 + 4*x^9 + 4*x^10 + 3*x^11 + x^12 + 3*x^13 + 2*x^14 + 2*x^15 + x^16 +...
where
A(x) = 1 + x + x^2*(1+x) + x^3 + x^4*(1+x)^2 + x^5 + x^6*(1+x) + x^7 + x^8*(1+x)^3 + x^9 + x^10*(1+x) + x^11 + x^12*(1+x)^2 + x^13 + x^14*(1+x) + x^16*(1+x)^4 +...
AS AN IRREGULAR TRIANGLE.
When formatted into a triangle with rows of 2^n terms, we see patterns more clearly.
Sequence starts with 1, 1, followed by terms in the following triangle:
1;
2, 1;
3, 2, 2, 1;
4, 4, 3, 1, 3, 2, 2, 1;
5, 7, 6, 2, 3, 2, 2, 1, 4, 4, 3, 1, 3, 2, 2, 1;
6, 11, 12, 6, 4, 2, 2, 1, 4, 4, 3, 1, 3, 2, 2, 1, 5, 7, 6, 2, 3, 2, 2, 1, 4, 4, 3, 1, 3, 2, 2, 1;
7, 16, 22, 16, 9, 3, 2, 1, 4, 4, 3, 1, 3, 2, 2, 1, 5, 7, 6, 2, 3, 2, 2, 1, 4, 4, 3, 1, 3, 2, 2, 1, 6, 11, 12, 6, 4, 2, 2, 1, 4, 4, 3, 1, 3, 2, 2, 1, 5, 7, 6, 2, 3, 2, 2, 1, 4, 4, 3, 1, 3, 2, 2, 1; ...
in which row n+1 can be generated from row n by:
* T(n+1,k) = T(n,k) + binomial(n,k) for 0<= k <=2^n, and
* T(n+1,2^n+k) = T(n,k) for 0<= k <=2^n.
Note that the rows, when read in reverse, tend to have a limit (A227287):
[1, 2, 2, 3, 1, 3, 4, 4, 1, 2, 2, 3, 2, 6, 7, 5, 1, 2, 2, 3, 1, 3, 4, 4, 1, 2, 2, 4, 6, 12, 11, 6, 1, 2, 2, 3, 1, 3, 4, 4, 1, ...];
where the g.f. of the resulting sequence is:
Sum_{n>=0} x^(n - b(n)) * (1+x)^b(n), where b(n) = A007814(n).
PROG
(PARI) {a(n)=polcoeff(1+sum(m=1, n, x^m*(1+x+x*O(x^n))^valuation(m, 2)), n)}
for(n=0, 128, print1(a(n), ", "))
CROSSREFS
Sequence in context: A366790 A369459 A369467 * A071481 A324293 A336927
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jul 04 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 May 9 16:12 EDT 2024. Contains 372353 sequences. (Running on oeis4.)