login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A260047
Composites whose prime factorization in base 3 is an anagram of the number in base 3.
11
16, 25, 160, 960, 1125, 1888, 3146, 3488, 3549, 4064, 4235, 4335, 4928, 5415, 5746, 5875, 7502, 7847, 8224, 8414, 8954, 9633, 10016, 10192, 11840, 12103, 12256, 12704, 12716, 12844, 16415, 16820, 16954, 18784, 18880, 19264, 19355, 19481, 22838
OFFSET
1,1
LINKS
EXAMPLE
16 = 2^4. In base 3, 121 = 2^11.
MATHEMATICA
Select[Range[10^6], !PrimeQ[#] && Sort@ IntegerDigits[#, 3] == Sort@ Flatten@ IntegerDigits[ Select[ Flatten@ FactorInteger@ #, #>1 &], 3] &] (* Giovanni Resta, Jul 14 2015 *)
KEYWORD
base,easy,nonn
AUTHOR
Stephen Tucker, Jul 14 2015
STATUS
approved