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.

A039667 Numbers k that together with their double and triple contain every digit from 1-9 exactly once.

Original entry on oeis.org

192, 219, 273, 327
Offset: 0

Views

Author

Keywords

Examples

			k=327 -> 2k=654 -> 3k=981 and 327654981 is a 'nine-digit' number.
		

References

  • D. Wells, Curious and interesting numbers, Penguin Books, p. 128.

Crossrefs

Cf. A050289.

Programs

  • Mathematica
    pdnQ[n_]:=Sort[Flatten[IntegerDigits[{n,2n,3n}]]]==Range[9]; Select[Range[987],pdnQ] (* Harvey P. Dale, Jul 07 2012 *)

Extensions

Corrected by Patrick De Geest, Mar 15 2000
Better definition from Tanya Khovanova, Mar 08 2021