The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A134660 Number of odd coefficients in (1 + x + x^2 + x^3)^n. 5
1, 4, 4, 4, 4, 16, 4, 8, 4, 16, 16, 4, 4, 16, 8, 16, 4, 16, 16, 16, 16, 64, 4, 8, 4, 16, 16, 8, 8, 32, 16, 32, 4, 16, 16, 16, 16, 64, 16, 32, 16, 64, 64, 4, 4, 16, 8, 16, 4, 16, 16, 16, 16, 64, 8, 16, 8, 32, 32, 16, 16, 64, 32, 64, 4, 16, 16, 16, 16, 64, 16, 32, 16, 64, 64, 16, 16, 64 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
S. R. Finch, P. Sebah and Z.-Q. Bai, Odd Entries in Pascal's Trinomial Triangle, arXiv:0802.2654 [math.NT], 2008.
FORMULA
a(n) = 2^A036555(n).
a(n) = gcd(4^n, C(4*n, n)). - Peter Luschny, Nov 08 2011
EXAMPLE
From Omar E. Pol, Mar 01 2015: (Start)
Written as an irregular triangle in which the row lengths are the terms of A011782, the sequence begins:
1;
4;
4,4;
4,16,4,8;
4,16,16,4,4,16,8,16;
4,16,16,16,16,64,4,8,4,16,16,8,8,32,16,32;
4,16,16,16,16,64,16,32,16,64,64,4,4,16,8,16,4,16,16,16,16,64,8,16,8,32,32,16,16,64,32,64;
...
(End)
MAPLE
seq(igcd(4^n, binomial(4*n, n)), n=0..77); # Peter Luschny, Nov 08 2011
MATHEMATICA
PolynomialMod[(1+x+x^2+x^3)^n, 2] /. x->1
A036555 = Total /@ IntegerDigits[3 Range[0, 100], 2]; Table[2^A036555[[n]], {n, 1, 20}] (* or *) Table[GCD[4^n, Binomial[4*n, n]], {n, 0, 50}] (* G. C. Greubel, Dec 31 2017 *)
PROG
(PARI) a(n) = {my(pol= Pol([1, 1, 1, 1], xx)*Mod(1, 2)); subst(lift(pol^n), xx, 1); } \\ Michel Marcus, Mar 01 2015
(PARI) a(n) = 2^hammingweight(3*n); \\ Joerg Arndt, Mar 10 2015
CROSSREFS
Sequence in context: A369757 A365489 A202686 * A132383 A115639 A242954
KEYWORD
nonn
AUTHOR
Steven Finch, Jan 25 2008
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 20 09:36 EDT 2024. Contains 372710 sequences. (Running on oeis4.)