A175809 a(n) is the number of shortest common superstrings of the binary representations of all natural numbers from 1 to n.
1, 1, 1, 1, 2, 2, 2, 2, 6, 4, 6, 4, 16, 16, 16, 16, 84, 56, 120, 108, 216, 108, 1296, 972, 504, 312, 768, 448, 2048, 2048, 2048, 2048
Offset: 1
Examples
a(5)=2 because there are 2 shortest common superstrings of 1,10,11,100,101; they are 110100 and 101100.
Crossrefs
Formula
From Thomas Scheuerle, Sep 19 2021: (Start)
a(2^n-3) = a(2^n-2) for n > 2. In this case the set of superstrings is equal.
a(2^n-2) = a(2^n-1) = a(2^n) for n > 1. Conjectured. (End)
Extensions
a(21)-a(32) from Thomas Scheuerle, Sep 19 2021
Comments