login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

a(n) = Xmult(n,6), or 2*A048724(n).
4

%I #14 Jun 30 2022 08:38:09

%S 0,6,12,10,24,30,20,18,48,54,60,58,40,46,36,34,96,102,108,106,120,126,

%T 116,114,80,86,92,90,72,78,68,66,192,198,204,202,216,222,212,210,240,

%U 246,252,250,232,238,228,226,160,166,172,170,184,190,180,178,144,150

%N a(n) = Xmult(n,6), or 2*A048724(n).

%t Table[ BitXor[4n, 2n], {n, 0, 60}] (* _Robert G. Wilson v_, Jul 06 2006 *)

%o (PARI) a(n)=bitxor(2*n, 4*n) \\ _Charles R Greathouse IV_, Oct 03 2016

%o (Python)

%o def A048726(n): return (n^ n<<1)<<1 # _Chai Wah Wu_, Jun 29 2022

%Y Cf. A048720, A048724.

%K nonn,easy

%O 0,2

%A _Antti Karttunen_, Apr 26 1999