OFFSET
0,4
LINKS
Gheorghe Coserea, Table of n, a(n) for n = 0..10000
Jon Maiga, Computer-generated formulas for A239907, Sequence Machine.
FORMULA
Conjecture: a(n) = n - A329320(n) for n >= 0 (noticed by Sequence Machine). - Mikhail Kurkov, Oct 13 2021
MAPLE
# From A014081:
cn := proc(v, k) local n, s, nn, i, j, som, kk;
som := 0;
kk := convert(cat(seq(1, j = 1 .. k)), string);
n := convert(v, binary);
s := convert(n, string);
nn := length(s);
for i to nn - k + 1 do
if substring(s, i .. i + k - 1) = kk then som := som + 1 fi od;
som; end;
g:=n->add((-1)^i*cn(n, i), i=1..10); # assumes n < 1023
[seq(n+g(n), n=0..100)];
MATHEMATICA
cn[n_, k_] := Count[Partition[IntegerDigits[n, 2], k, 1], Table[1, {k}]]; Table[n - Sum[cn[n, i], {i, 1, IntegerLength[n, 2], 2}] + Sum[cn[n, i], {i, 2, IntegerLength[n, 2], 2}], {n, 0, 78}] (* Michael De Vlieger, Sep 18 2015 *)
PROG
(PARI)
binruns(n) = {
if (n == 0, return([1, 0]));
my(bag = List(), v=0);
while(n != 0,
v = valuation(n, 2); listput(bag, v); n >>= v; n++;
v = valuation(n, 2); listput(bag, v); n >>= v; n--);
return(Vec(bag));
};
a(n) = {
my(v = binruns(n));
n - sum(i = 1, #v, if (i%2 == 0, (v[i] + 1)\2, 0))
};
vector(79, i, a(i-1)) \\ Gheorghe Coserea, Sep 18 2015
CROSSREFS
KEYWORD
nonn,base
AUTHOR
N. J. A. Sloane, Apr 07 2014
STATUS
approved