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!)
A082388 a(1) = 1, a(2) = 2; further terms are defined by rules that for k >= 2, a(2^k-i) = a(2^k+i) for 1 <= i <= 2^k-1 and a(2^k) = a(2^(k-1)) + Sum_{i < 2^k} a(i). 2

%I #16 Sep 20 2019 08:55:21

%S 1,2,1,6,1,2,1,20,1,2,1,6,1,2,1,68,1,2,1,6,1,2,1,20,1,2,1,6,1,2,1,232,

%T 1,2,1,6,1,2,1,20,1,2,1,6,1,2,1,68,1,2,1,6,1,2,1,20,1,2,1,6,1,2,1,792,

%U 1,2,1,6,1,2,1,20,1,2,1,6,1,2,1,68,1,2,1,6,1,2,1,20,1,2,1,6,1,2,1,232,1,2,1

%N a(1) = 1, a(2) = 2; further terms are defined by rules that for k >= 2, a(2^k-i) = a(2^k+i) for 1 <= i <= 2^k-1 and a(2^k) = a(2^(k-1)) + Sum_{i < 2^k} a(i).

%H Andrew Howroyd, <a href="/A082388/b082388.txt">Table of n, a(n) for n = 1..1024</a>

%F a(2^k) = 4*a(2^(k-1)) - 2*a(2^(k-2));

%F a(2^k) = round((1/2)*(2+sqrt(2))^k).

%F Multiplicative with a(2^e) = A006012(e), a(p^e) = 1 for odd prime p. - _Andrew Howroyd_, Jul 31 2018

%t a[n_] := With[{e = IntegerExponent[n, 2]}, Sum[Binomial[e, 2k] 2^(e-k), {k, 0, Quotient[e, 2]}]];

%t a /@ Range[1, 100] (* _Jean-François Alcover_, Sep 20 2019, from PARI *)

%o (PARI) a(n)={my(e=valuation(n,2)); sum(k=0, e\2, binomial(e, 2*k)*2^(e-k))} \\ _Andrew Howroyd_, Jul 31 2018

%Y Cf. A006012.

%K nonn,mult

%O 1,2

%A _Benoit Cloitre_, Apr 14 2003

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 25 16:45 EDT 2024. Contains 371989 sequences. (Running on oeis4.)