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.

A235161 Primes which have one or more occurrences of exactly nine different digits.

This page as a plain text file.
%I A235161 #16 Oct 29 2014 12:19:03
%S A235161 102345689,102345697,102345869,102346789,102346879,102346897,
%T A235161 102346957,102347689,102348679,102348769,102349867,102354689,
%U A235161 102354697,102356489,102356789,102356987,102358769,102358967,102364859,102364879,102365897,102365947,102368459
%N A235161 Primes which have one or more occurrences of exactly nine different digits.
%C A235161 The first term having a repeated digit is 1002346589.
%H A235161 Colin Barker, <a href="/A235161/b235161.txt">Table of n, a(n) for n = 1..2000</a>
%o A235161 (PARI) s=[]; forprime(n=100000000, 102400000, if(#vecsort(eval(Vec(Str(n))),,8)==9, s=concat(s, n))); s
%Y A235161 Cf. A073643, A235154-A235160.
%K A235161 nonn,base
%O A235161 1,1
%A A235161 _Colin Barker_, Jan 04 2014