A099901 Shifts left and divides by 2 under the XOR BINOMIAL transform (A099902).
1, 2, 6, 14, 22, 46, 118, 206, 278, 558, 1654, 3790, 5910, 11310, 28790, 49358, 65814, 131630, 394870, 921294, 1447702, 3025966, 7762038, 13549774, 18284822, 36438574, 108004982, 247467726, 385881878, 738208814, 1879076982, 3221274830
Offset: 0
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*2^(k+1))));B}
Comments