A099898 Shifts left and divides by 4 under the XOR BINOMIAL transform (A099899).
1, 4, 20, 84, 276, 1108, 5396, 20564, 65812, 263252, 1316116, 5525588, 18153748, 72352852, 352326932, 1342197844, 4295033108, 17180132436, 85900662036, 360782778452, 1185429127444, 4758896116820, 23175995856148, 88323049672788
Offset: 0
Keywords
Programs
-
PARI
{a(n)=local(B);B=0;if(n==0,B=1, for(k=0,n-1, B=bitxor(B,binomial(n-1-k+k\2,k\2)%2*4^(k+1))));B}
Comments