OFFSET
1,2
COMMENTS
The records are 1,4,15,57,221,869,3445,13717,54741... (apparently 1/24*(5*4^n+6*2^n-8)) and they occur at index 1,2,4,9,23,65,197,626,2056.. (Is this A014137?).
PROG
(PARI) isA014486(n)=my(v=binary(n), t=0); for(i=1, #v, t+=if(v[i], 1, -1); if(t<0, return(0))); t==0
L=listcreate(); for(n=0, 200000, if(isA014486(n), listput(L, n))); v=Vec(L); for(n=1, #v-1, print1((v[n+1]-v[n])/2, ", "))
CROSSREFS
KEYWORD
nonn
AUTHOR
Ralf Stephan, Aug 31 2013
STATUS
approved