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.

A386083 Primes having only {0, 6, 7, 9} as digits.

This page as a plain text file.
%I A386083 #6 Jul 16 2025 21:44:47
%S A386083 7,67,79,97,607,677,709,769,797,907,967,977,997,6007,6067,6079,6607,
%T A386083 6679,6709,6779,6907,6967,6977,6997,7069,7079,7607,7669,7699,7907,
%U A386083 9007,9067,9677,9679,9697,9767,9769,9907,9967,60077,60607,60679,60779,66067,66697,66797
%N A386083 Primes having only {0, 6, 7, 9} as digits.
%H A386083 Jason Bard, <a href="/A386083/b386083.txt">Table of n, a(n) for n = 1..10000</a>
%H A386083 <a href="/index/Pri#PrimesWithDigits">Index to entries for primes with digits in a given set</a>
%t A386083 Select[FromDigits /@ Tuples[{0, 6, 7, 9}, n], PrimeQ]
%o A386083 (Magma) [p: p in PrimesUpTo(10^6) | Set(Intseq(p)) subset [0, 6, 7, 9]];
%o A386083 (Python) print(list(islice(primes_with("0679"), 41))) # uses function/imports in A385776
%o A386083 (PARI) primes_with(, 1, [0, 6, 7, 9]) \\ uses function in A385776
%Y A386083 Supersequence of A261181, A261184, A385770.
%Y A386083 Cf. A000040, A385776.
%K A386083 nonn,base,easy
%O A386083 1,1
%A A386083 _Jason Bard_, Jul 16 2025