login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 


a(n) = k AND k^k, where k=2*n+1, AND is the bitwise AND operator.
2

%I #23 May 22 2021 04:30:44

%S 1,3,5,7,9,3,13,15,17,3,5,7,25,3,13,31,33,35,5,7,41,35,13,15,49,35,37,

%T 7,57,35,45,63,65,67,69,7,9,3,13,15,81,67,5,7,25,3,77,31,97,35,5,7,41,

%U 99,77,15,113,35,37,7,57,99,109,127,129,131,133,7,137,131

%N a(n) = k AND k^k, where k=2*n+1, AND is the bitwise AND operator.

%H Alois P. Heinz, <a href="/A213542/b213542.txt">Table of n, a(n) for n = 0..10000</a>

%p a:= proc(n) local i, k, m, r;

%p k:= 2*n+1;

%p m:= k &^ k mod (2^(1+ilog2(k)));

%p r:= 0;

%p for i from 0 while (m>0 or k>0) do

%p r:= r +2^i* irem(m, 2, 'm') *irem(k, 2, 'k')

%p od; r

%p end:

%p seq(a(n), n=0..100); # _Alois P. Heinz_, Jun 21 2012

%t Table[BitAnd[n,n^n],{n,1,141,2}] (* _Harvey P. Dale_, Nov 26 2014 *)

%o (Python)

%o print([k**k & k for k in range(1,222,2)])

%Y Cf. A213541.

%K nonn,base,easy,look,less

%O 0,2

%A _Alex Ratushnyak_, Jun 14 2012

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | 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 September 22 15:54 EDT 2024. Contains 376119 sequences. (Running on oeis4.)