OFFSET
1,1
COMMENTS
There are exactly 96 terms in this sequence smaller than 10^9.
This sequence may be infinite.
REFERENCES
Andreas Boe, The Wasp Nest, Amazon Books, 2013.
LINKS
Andreas Boe and Giovanni Resta, Table of n, a(n) for n = 1..2838 (terms < 1.3*10^11, 92 terms from Andreas Boe)
Andreas Boe, Boe Numbers
Giovanni Resta, Decompositions for terms < 1.3*10^11
EXAMPLE
6724 -> 6.72.4 -> 110.1001000.100 -> 1101001000100 -> 6724.
MATHEMATICA
okQ[t_, d_, b_] := Catch[Block[{pw = 10, bL, y, r}, d == b && d < t && Throw@True; d < 10 && Throw@False; While[d > pw, y = Mod[d, pw]; bL = 2^If[y == 0, 1, IntegerLength[y, 2]]; Mod[b, bL] == y && okQ[t, Floor[d/pw], Floor[b/bL]] && Throw@True; pw *= 10]; False]]; okQ[n_] := okQ[n, n, n]; Select[Range[9, 15000], okQ] (* Giovanni Resta, Feb 03 2014 *)
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Andreas Boe, Feb 02 2014
STATUS
approved