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!)
A270438 a(n) is the number of entries == 1 mod 4 in row n of Pascal's triangle. 2
1, 2, 2, 2, 2, 4, 2, 4, 2, 4, 4, 4, 2, 4, 4, 8, 2, 4, 4, 4, 4, 8, 4, 8, 2, 4, 4, 8, 4, 8, 8, 16, 2, 4, 4, 4, 4, 8, 4, 8, 4, 8, 8, 8, 4, 8, 8, 16, 2, 4, 4, 8, 4, 8, 8, 16, 4, 8, 8, 16, 8, 16, 16, 32, 2, 4, 4, 4, 4, 8, 4, 8, 4, 8, 8, 8, 4, 8, 8, 16, 4, 8, 8 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
All entries are powers of 2.
LINKS
Kenneth S. Davis and William A. Webb, Pascal's triangle modulo 4, Fib. Quart., 29 (1991), 79-83.
A. Granville, Zaphod Beeblebrox's Brain and the Fifty-ninth Row of Pascal's Triangle, The American Mathematical Monthly, 99(4) (1992), 318-331.
FORMULA
a(n) = 2^(A000120(n) - min(1, A014081(n))). [Davis & Webb]
EXAMPLE
Row 3 of Pascal's triangle is (1,3,3,1) and has two entries == 1 (mod 4), so a(3) = 2.
MAPLE
f:= proc(n) local L, m;
L:= convert(n, base, 2);
m:= convert(L, `+`);
if has(L[1..-2]+L[2..-1], 2) then 2^(m-1) else 2^m fi
end proc:
map(f, [$0..1000]);
MATHEMATICA
Count[#, 1] & /@ Table[Mod[Binomial[n, k], 4], {n, 0, 120}, {k, 0, n}] (* Michael De Vlieger, Feb 26 2017 *)
PROG
(PARI) a(n) = 2^(hammingweight(n) - min(hammingweight(bitand(n, n>>1)), 1)) \\ Charles R Greathouse IV, Jul 13 2016
CROSSREFS
Sequence in context: A186643 A342087 A286575 * A347291 A331308 A318836
KEYWORD
nonn,easy
AUTHOR
Robert Israel, Jul 12 2016
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 06:24 EDT 2024. Contains 371918 sequences. (Running on oeis4.)