OFFSET
0,4
COMMENTS
The definition is recursive: a(n) depends on prior terms (a(0), ..., a(n-1)); a(0) = 0 corresponds to an empty sum.
LINKS
Rémy Sigrist, Table of n, a(n) for n = 0..10000
EXAMPLE
The first terms, alongside the corresponding k's, are:
n a(n) k's
-- ---- ------------------------
0 0 {}
1 1 {0}
2 1 {0}
3 3 {0, 1, 2}
4 1 {0}
5 4 {0, 1, 2, 4}
6 2 {0, 5}
7 7 {0, 1, 2, 3, 4, 5, 6}
8 1 {0}
9 5 {0, 1, 2, 4, 8}
10 2 {0, 6}
11 8 {0, 1, 2, 3, 4, 6, 8, 10}
12 3 {0, 5, 11}
MAPLE
a:= proc(n) option remember; add(
`if`(Bits[And](n, a(j))=a(j), 1, 0), j=0..n-1)
end:
seq(a(n), n=0..80); # Alois P. Heinz, Feb 28 2022
PROG
(PARI) for (n=1, #a=vector(75), print1 (a[n]=sum(k=1, n-1, bitand(a[k], n-1)==a[k])", "))
(Python)
a = []
[a.append(sum(a[k] & n == a[k] for k in range(n))) for n in range(75)]
print(a) # Michael S. Branicky, Feb 24 2022
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Rémy Sigrist, Feb 23 2022
STATUS
approved