login

Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.

A133220
a(n) is the smallest positive number k such that k and n*k are anagrams.
0
1, 125874, 1035, 1782, 142857, 1386, 1359, 113967, 1089
OFFSET
1,2
EXAMPLE
3*1035 = 3105 and this is the smallest such number.
MATHEMATICA
Table[Select[Range[1000000], Sort[IntegerDigits[ # ]] == Sort[IntegerDigits[n# ]] &][[1]], {n, 9}]
KEYWORD
base,fini,full,nonn
AUTHOR
Tanya Khovanova, Oct 11 2007
STATUS
approved