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.

Previous Showing 11-11 of 11 results.

A354456 a(n) is the least number k such that k - 5^i is prime for i = 1..n.

Original entry on oeis.org

7, 28, 132, 666, 3234, 17514, 100674, 501228, 2062662, 211097334, 2597411082, 34473310284, 214852200444, 394471192794
Offset: 1

Views

Author

J. M. Bergot and Robert Israel, May 30 2022

Keywords

Comments

a(15) > 5*10^12. - David A. Corneth, May 30 2022

Examples

			a(3) = 132 because 132 - 5^1 = 127, 132 - 5^2 = 107 and 132 - 5^3 = 7 are all prime, and 132 is the least number with this property.
		

Crossrefs

Programs

  • Maple
    g:= proc(n) local p,x,i;
       p:= 1:
       do
         p:= nextprime(p);
         x:= p + 5^n;
         if andmap(isprime, [seq(x-5^i,i=1..n-1)]) then return x fi
       od
    end proc:
    map(g, [$1..10]);
  • Python
    from sympy import isprime, nextprime
    def a(n):
        p = 2
        while True:
            k, p = 5**n + p, nextprime(p)
            if all(isprime(k-5**i) for i in range(1, n)):
                return k
    print([a(n) for n in range(1, 10)]) # Michael S. Branicky, May 30 2022

Extensions

a(11)-a(14) from David A. Corneth, May 30 2022
Previous Showing 11-11 of 11 results.