OFFSET
0,3
COMMENTS
A094543(n) = n^a(n).
LINKS
Harvey P. Dale, Table of n, a(n) for n = 0..1000
EXAMPLE
n=6: 6='110' is not contained in 6^2='100100', but in 6^3='11011000', therefore a(6)=3.
MATHEMATICA
brn[n_]:=Module[{k=2, idn2=IntegerDigits[n, 2]}, While[SequenceCount[IntegerDigits[n^k, 2], idn2]<1, k++]; k]; Join[{1, 1}, Array[brn, 110, 2]] (* Harvey P. Dale, Nov 30 2025 *)
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Reinhard Zumkeller, Aug 24 2003
EXTENSIONS
Extended and corrected by Reinhard Zumkeller, May 08 2004
STATUS
approved
