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.

Showing 1-1 of 1 results.

A361562 Wagstaff numbers that are of the form 4*k + 3.

Original entry on oeis.org

3, 7, 11, 19, 23, 31, 43, 79, 127, 167, 191, 199, 347, 3539, 5807, 10691, 11279, 12391, 14479, 83339, 117239, 127031, 141079, 269987, 986191, 4031399
Offset: 1

Views

Author

Jorge Coveiro, Mar 15 2023

Keywords

Comments

13347311 and 13372531 are also in the sequence, but may not be the next terms.

Crossrefs

Cf. A000978 (Wagstaff numbers), A002145 (primes of form 4*k+3), A112633, A361563.

Programs

  • Python
    from itertools import count, islice
    from sympy import prime, isprime
    def A361562_gen(): # generator of terms
        return filter(lambda p: p&2 and isprime(((1<A361562_list = list(islice(A361562_gen(),10)) # Chai Wah Wu, Mar 21 2023

Formula

Intersection of A000978 and A002145.
Showing 1-1 of 1 results.