login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A120804 Primes with consecutive digits descending. 5
2, 3, 5, 7, 43, 109, 10987, 76543, 10987654321098765432109876543210987, 4321098765432109876543210987654321098765432109876543210987654321 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Digits can be in descending order. After 0 comes 9.
a(15) has 1053 digits. - Michael S. Branicky, Aug 05 2022
LINKS
MATHEMATICA
f[n_] := Block[{d = Reverse@ Range@n, t = Table[1, {n}]}, Select[ Drop[ Union@ Flatten@ Table[ FromDigits[ Mod[d + i*t, 10]], {i, 10}], 2], PrimeQ@# &]]; Array[f, 1000] // Flatten
PROG
(Python)
from sympy import isprime
from itertools import count, islice
def bgen(): yield from (int("".join(str((s0-i)%10) for i in range(d))) for d in count(1) for s0 in range(1, 10))
def agen(): yield from filter(isprime, bgen())
print(list(islice(agen(), 10))) # Michael S. Branicky, Aug 05 2022
CROSSREFS
Sequence in context: A083820 A244556 A279954 * A092066 A224904 A028981
KEYWORD
nonn,base
AUTHOR
Robert G. Wilson v, Jul 05 2006
EXTENSIONS
Corrected by Paul Tek, May 08 2013
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified August 2 12:57 EDT 2024. Contains 374848 sequences. (Running on oeis4.)