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.

A114126 Numbers k such that k and 8*k, taken together, are pandigital.

Original entry on oeis.org

10459, 10469, 10537, 10579, 10592, 10674, 10679, 10742, 10794, 10932, 10942, 10953, 10954, 12073, 12307, 12345
Offset: 1

Views

Author

Giovanni Resta, Feb 06 2006

Keywords

Examples

			10459 and 83672 = 10459*8 together contain all the 10 digits once.
		

Crossrefs

Programs

  • Mathematica
    f[a_]:=Join[IntegerDigits[a],IntegerDigits[8*a]];Select[Range[10000,100000],ContainsExactly[f[#],{0,1,2,3,4,5,6,7,8,9}]&&Length[f[#]]==10&] (* James C. McMahon, Jul 30 2024 *)