OFFSET
1,1
LINKS
Arkadiusz Wesolowski, Table of n, a(n) for n = 1..10000
EXAMPLE
35 = 5*7 -> 101*111, therefore 35 is a term.
36 = 6^2 -> 10*10*11*11, therefore 36 is not a term.
MATHEMATICA
lst1 = {}; lst2 = {}; r = 2257; Do[b = IntegerDigits[FactorInteger[n], 2]; If[! PrimeQ[n] && Length[b[[-1, 1]]] == Length[b[[1, 1]]], AppendTo[lst1, n]], {n, 4, r}]; lst2 = Complement[lst1, Union[Flatten[Table[n^i, {i, 2, Log[2, r]}, {n, 2, r^(1/i)}]]]]; lst2
CROSSREFS
KEYWORD
base,nonn
AUTHOR
Arkadiusz Wesolowski, Apr 23 2012
STATUS
approved