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!)
A196272 Number of occurrences of '11' in base-4 expansion of n. 1
0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 3 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,22
COMMENTS
This is to base 4 A007090 as A196096 is to base 3 and A007089 as A014081 is to base 2 A007088.
Records occur at places where n = '111...11' in base b, that is n = (b^(k+1)-1)/(b-1) for some k > 0, in particular for b=4 as listed in A002450(k+1). - R. J. Mathar, Sep 30 2011
LINKS
EXAMPLE
a(21) = 2 because 21 (base 10) = 111 (base 4), whose first two digits are 1's, and whose rightmost two digits are the second substring of "11".
MAPLE
A196272 := proc(n)
local a, dgs ;
a := 0 ;
dgs := convert(n, base, 4) ;
for i from 1 to nops(dgs)-1 do
if op(i, dgs)=1 and op(i+1, dgs)=1 then
a := a+1 ;
end if;
end do;
a ;
end proc:
seq(A196272(n), n=0..100) ; # R. J. Mathar, Sep 30 2011
MATHEMATICA
Table[d = IntegerDigits[n, 4]; Count[Partition[d, 2, 1], {1, 1}], {n, 0, 100}] (* T. D. Noe, Sep 30 2011 *)
CROSSREFS
Sequence in context: A108511 A261160 A270668 * A086073 A053622 A016408
KEYWORD
nonn,easy,base
AUTHOR
Jonathan Vos Post, Sep 29 2011
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 16:21 EDT 2024. Contains 371794 sequences. (Running on oeis4.)