cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A133220 a(n) is the smallest positive number k such that k and n*k are anagrams.

Original entry on oeis.org

1, 125874, 1035, 1782, 142857, 1386, 1359, 113967, 1089
Offset: 1

Views

Author

Tanya Khovanova, Oct 11 2007

Keywords

Examples

			3*1035 = 3105 and this is the smallest such number.
		

Crossrefs

Programs

  • Mathematica
    Table[Select[Range[1000000], Sort[IntegerDigits[ # ]] == Sort[IntegerDigits[n# ]] &][[1]], {n, 9}]