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.

Previous Showing 11-20 of 24 results. Next

A235158 Primes which have one or more occurrences of exactly six different digits.

Original entry on oeis.org

102359, 102367, 102397, 102437, 102497, 102539, 102547, 102563, 102587, 102593, 102643, 102647, 102653, 102673, 102679, 102763, 102769, 102793, 102859, 102953, 102967, 102983, 103289, 103457, 103529, 103549, 103567, 103657, 103687, 103769, 103867, 103967
Offset: 1

Views

Author

Colin Barker, Jan 04 2014

Keywords

Comments

The first term having a repeated digit is 1002347.

Crossrefs

Programs

  • PARI
    s=[]; forprime(n=100000, 105000, if(#vecsort(eval(Vec(Str(n))),,8)==6, s=concat(s, n))); s

A235159 Primes which have one or more occurrences of exactly seven different digits.

Original entry on oeis.org

1023467, 1023487, 1023697, 1023769, 1023857, 1023947, 1024357, 1024379, 1024579, 1024589, 1024693, 1024697, 1024783, 1024853, 1024957, 1024963, 1024987, 1025347, 1025483, 1025693, 1025749, 1025789, 1025839, 1025873, 1025897, 1026359, 1026439, 1026457
Offset: 1

Views

Author

Colin Barker, Jan 04 2014

Keywords

Comments

The first term having a repeated digit is 10023649.

Crossrefs

Programs

  • Mathematica
    Select[Prime[Range[PrimePi[102*10^4],PrimePi[103*10^4]]],Count[ DigitCount[ #],0] ==3&] (* Harvey P. Dale, Mar 21 2018 *)
  • PARI
    s=[]; forprime(n=1000000, 1030000, if(#vecsort(eval(Vec(Str(n))),,8)==7, s=concat(s, n))); s

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

A235691 Semiprimes which have one or more occurrences of exactly three different digits.

Original entry on oeis.org

106, 123, 129, 134, 142, 143, 145, 146, 158, 159, 169, 178, 183, 185, 187, 194, 201, 203, 205, 206, 209, 213, 214, 215, 217, 218, 219, 235, 237, 247, 249, 253, 254, 259, 265, 267, 274, 278, 287, 289, 291, 295, 298, 301, 302, 305, 309, 314, 319, 321, 326, 327
Offset: 1

Views

Author

Colin Barker, Jan 14 2014

Keywords

Comments

The first term having a repeated digit is 1003.

Examples

			91119111691966691969 is a term, because it is made of the 3 digits {1, 6, 9} and is the product of two primes 9397848521 and 9695741689. - _Giovanni Resta_, Jan 14 2014
		

Crossrefs

Programs

  • Mathematica
    Select[Range@999, Length@ Union@ IntegerDigits[#] == 3 && Total[Last /@ FactorInteger[#]] == 2 &] (* Giovanni Resta, Jan 14 2014 *)
  • PARI
    list(lim)=my(v=List(), t); forprime(p=2, sqrt(lim), t=p; forprime(q=p, lim\t, listput(v, t*q))); vecsort(Vec(v)) \\ From A001358
    b=list(10000); s=[]; for(n=1, #b, if(#vecsort(eval(Vec(Str(b[n]))),,8)==3, s=concat(s, b[n]))); s

A090155 Primes of the form identical digits preceded by a 7.

Original entry on oeis.org

7, 71, 73, 79, 733, 7333, 79999, 733333, 799999, 71111111, 799999999, 79999999999, 79999999999999999999999999, 79999999999999999999999999999999999999999999999999
Offset: 1

Views

Author

Robert G. Wilson v, Nov 22 2003

Keywords

Crossrefs

Subsequence of A030096 and of A030291. Apart from the first term, a subsequence of A235154.

Programs

  • Mathematica
    Select[ FromDigits /@ Flatten[ Table[ PadRight[{7}, i, # ] & /@ {1, 2, 3, 4, 5, 6, 7, 8, 9}, {i, 2, 50}], 1], PrimeQ[ # ] &]
    Select[FromDigits/@Flatten[Table[PadRight[{7},i,#]&/@{1,3,7,9},{i,50}],1],PrimeQ[#]&]//Union (* Harvey P. Dale, Nov 22 2024 *)

A235156 Primes which have one or more occurrences of exactly four different digits.

Original entry on oeis.org

1039, 1049, 1063, 1069, 1087, 1093, 1097, 1237, 1249, 1259, 1279, 1283, 1289, 1297, 1307, 1327, 1367, 1409, 1423, 1427, 1429, 1439, 1453, 1459, 1483, 1487, 1489, 1493, 1523, 1543, 1549, 1567, 1579, 1583, 1597, 1607, 1609, 1627, 1637, 1657, 1693, 1697, 1709
Offset: 1

Views

Author

Colin Barker, Jan 04 2014

Keywords

Comments

The first term having a repeated digit is 10037.

Crossrefs

Programs

  • PARI
    s=[]; forprime(n=1000, 2000, if(#vecsort(eval(Vec(Str(n))),,8)==4, s=concat(s, n))); s

A235693 Semiprimes which have one or more occurrences of exactly five different digits.

Original entry on oeis.org

10237, 10238, 10239, 10249, 10265, 10279, 10294, 10297, 10327, 10342, 10345, 10347, 10349, 10358, 10367, 10378, 10379, 10389, 10394, 10397, 10423, 10435, 10462, 10473, 10483, 10489, 10493, 10495, 10497, 10523, 10537, 10543, 10546, 10547, 10562, 10573, 10579
Offset: 1

Views

Author

Colin Barker, Jan 14 2014

Keywords

Comments

The first term having a repeated digit is 100235.
The first term that is a square is 12769. - Robert Israel, Jul 06 2018

Crossrefs

Programs

  • Maple
    # to get all terms with 5 digits S:= combinat:-choose([$0..9],5):
    f:= proc(x) local s,L;
          L:= convert(x,base,5);      if nops(L) < 5 then L:= [op(L),0$(5-nops(L))] fi;      if nops(convert(L,set))<5 then return NULL fi;
          op(select(t -> t > 10^4 and numtheory:-bigomega(t)=2, map(s -> add(s[L[i]+1]*10^(i-1),i=1..5),S)))
    end proc:
    sort(map(f, [$1..5^5-1])); # Robert Israel, Jul 06 2018
  • Mathematica
    Select[Range[10000,11000],PrimeOmega[#]==2&&Count[DigitCount[#],0]==5&] (* Harvey P. Dale, Apr 08 2015 *)
  • PARI
    list(lim)=my(v=List(), t); forprime(p=2, sqrt(lim), t=p; forprime(q=p, lim\t, listput(v, t*q))); vecsort(Vec(v)) \\ From A001358
    b=list(15000); s=[]; for(n=1, #b, if(#vecsort(eval(Vec(Str(b[n]))),,8)==5, s=concat(s, b[n]))); s

A235692 Semiprimes which have one or more occurrences of exactly four different digits.

Original entry on oeis.org

1027, 1037, 1042, 1043, 1046, 1047, 1057, 1059, 1067, 1073, 1079, 1082, 1094, 1203, 1205, 1207, 1234, 1238, 1243, 1247, 1253, 1257, 1263, 1267, 1273, 1285, 1286, 1293, 1294, 1306, 1329, 1345, 1346, 1347, 1349, 1354, 1357, 1369, 1379, 1382, 1385, 1387, 1389
Offset: 1

Views

Author

Colin Barker, Jan 14 2014

Keywords

Comments

The first term having a repeated digit is 10027.

Crossrefs

Programs

  • PARI
    list(lim)=my(v=List(), t); forprime(p=2, sqrt(lim), t=p; forprime(q=p, lim\t, listput(v, t*q))); vecsort(Vec(v)) \\ From A001358
    b=list(15000); s=[]; for(n=1, #b, if(#vecsort(eval(Vec(Str(b[n]))),,8)==4, s=concat(s, b[n]))); s

A235694 Semiprimes which have one or more occurrences of exactly six different digits.

Original entry on oeis.org

102347, 102349, 102369, 102379, 102385, 102386, 102387, 102389, 102394, 102395, 102398, 102439, 102457, 102458, 102463, 102467, 102469, 102473, 102478, 102479, 102493, 102549, 102569, 102574, 102589, 102637, 102639, 102649, 102658, 102659, 102683, 102689
Offset: 1

Views

Author

Colin Barker, Jan 14 2014

Keywords

Crossrefs

Programs

  • PARI
    list(lim)=my(v=List(), t); forprime(p=2, sqrt(lim), t=p; forprime(q=p, lim\t, listput(v, t*q))); vecsort(Vec(v)) \\ From A001358
    b=list(103000); s=[]; for(n=1, #b, if(#vecsort(eval(Vec(Str(b[n]))),,8)==6, s=concat(s, b[n]))); s

A235695 Semiprimes which have one or more occurrences of exactly seven different digits.

Original entry on oeis.org

1023469, 1023479, 1023547, 1023574, 1023586, 1023647, 1023649, 1023657, 1023689, 1023745, 1023746, 1023749, 1023794, 1023847, 1023879, 1023965, 1023985, 1024367, 1024369, 1024537, 1024538, 1024563, 1024567, 1024583, 1024637, 1024679, 1024687, 1024735
Offset: 1

Views

Author

Colin Barker, Jan 14 2014

Keywords

Crossrefs

Programs

  • PARI
    list(lim)=my(v=List(), t); forprime(p=2, sqrt(lim), t=p; forprime(q=p, lim\t, listput(v, t*q))); vecsort(Vec(v)) \\ From A001358
    b=list(1030000); s=[]; for(n=1, #b, if(#vecsort(eval(Vec(Str(b[n]))),,8)==7, s=concat(s, b[n]))); s
Previous Showing 11-20 of 24 results. Next