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.

A053435 Primes with distinct digits in alphabetical order (in English).

This page as a plain text file.
%I A053435 #22 Feb 16 2025 08:32:42
%S A053435 2,3,5,7,13,17,41,43,47,53,59,73,83,89,97,163,173,463,491,541,547,563,
%T A053435 593,853,857,859,863,4973,5413,5417,8513,8543,8563,8573,8597,8963,
%U A053435 9173,54163,54917,54973,84163,84913,541763,549163,849763,854963,891763,5491763
%N A053435 Primes with distinct digits in alphabetical order (in English).
%C A053435 Largest term is 5491763.
%H A053435 Eric Weisstein's World of Mathematics, <a href="https://mathworld.wolfram.com/WordSequence.html">Word Sequence</a>
%o A053435 (Python)
%o A053435 from sympy import isprime
%o A053435 from itertools import combinations
%o A053435 afull = sorted(k for k in (int("".join(c)) for l in range(1, 10) for c in combinations("854917632", l)) if isprime(k))
%o A053435 print(afull) # _Michael S. Branicky_, Jun 02 2022
%Y A053435 Cf. A000040.
%Y A053435 Primes in A053433. Subsequence of A053432 and A053434.
%K A053435 easy,fini,full,nonn,word,base
%O A053435 1,1
%A A053435 _G. L. Honaker, Jr._, Jan 10 2000
%E A053435 a(38)-a(46) from _Metin Sariyar_, Dec 13 2021
%E A053435 Missing term inserted by _Sean A. Irvine_, Jan 10 2022