(Translated by https://www.hiragana.jp/)
The On-Line Encyclopedia of Integer Sequences® (OEIS®)
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!)

Revision History for A004022

(Underlined text is an addition; strikethrough text is a deletion.)

Showing entries 1-10 | older changes
A004022 Primes of the form (10^k - 1)/9. Also called repunit primes or repdigit primes.
(history; published version)
#91 by N. J. A. Sloane at Sun Jan 22 07:15:58 EST 2023
STATUS

editing

approved

#90 by N. J. A. Sloane at Sun Jan 22 07:15:53 EST 2023
NAME

Primes of the form (10^k - 1)/9. Also called repunit primes or repdigit primes.

CROSSREFS

A116692 is another version of repunit primes or repdigit primes. - N. J. A. Sloane, Jan 22 2023

EXTENSIONS

Name expanded by N. J. A. Sloane, Jan 22 2023

STATUS

approved

editing

#89 by Charles R Greathouse IV at Thu Sep 08 08:44:32 EDT 2022
PROG

(MAGMAMagma) [a: n in [0..300] | IsPrime(a) where a is (10^n - 1) div 9 ]; // Vincenzo Librandi, Nov 08 2014

Discussion
Thu Sep 08 08:44
OEIS Server: https://oeis.org/edit/global/2944
#88 by Alois P. Heinz at Thu Jun 09 21:12:27 EDT 2022
STATUS

proposed

approved

#87 by Michael S. Branicky at Thu Jun 09 20:28:53 EDT 2022
STATUS

editing

proposed

#86 by Michael S. Branicky at Thu Jun 09 20:28:51 EDT 2022
PROG

(Python)

from sympy import isprime

from itertools import count, islice

def agen(): # generator of terms

yield from (t for t in (int("1"*k) for k in count(1)) if isprime(t))

print(list(islice(agen(), 4))) # Michael S. Branicky, Jun 09 2022

STATUS

approved

editing

#85 by Michael De Vlieger at Fri Apr 01 20:20:00 EDT 2022
STATUS

editing

approved

#84 by Michael De Vlieger at Fri Apr 01 20:19:57 EDT 2022
LINKS

Ernest G. Hibbs, <a href="https://www.proquest.com/openview/4012f0286b785cd732c78eb0fc6fce80">Component Interactions of the Prime Numbers</a>, Ph. D. Thesis, Capitol Technology Univ. (2022), see p. 33.

STATUS

reviewed

editing

#83 by Michel Marcus at Fri Apr 01 14:57:32 EDT 2022
STATUS

proposed

reviewed

#82 by Michael De Vlieger at Fri Apr 01 14:34:17 EDT 2022
STATUS

editing

proposed

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 26 02:15 EDT 2024. Contains 375454 sequences. (Running on oeis4.)