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.

A235160 Primes which have one or more occurrences of exactly eight different digits.

Original entry on oeis.org

10234589, 10234759, 10234897, 10235647, 10235749, 10235867, 10236547, 10236857, 10237849, 10238467, 10238597, 10238647, 10238759, 10238957, 10239487, 10239587, 10239847, 10243567, 10243657, 10243759, 10243769, 10243867, 10243897, 10245397
Offset: 1

Views

Author

Colin Barker, Jan 04 2014

Keywords

Comments

The first term having a repeated digit is 100234657.

Crossrefs

Programs

  • Mathematica
    Select[Prime[Range[664580,68*10^4]],Count[DigitCount[#],0]==2&] (* Harvey P. Dale, Apr 05 2019 *)
  • PARI
    s=[]; forprime(n=10000000, 10250000, if(#vecsort(eval(Vec(Str(n))),,8)==8, s=concat(s, n))); s