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!)
A034924 Numbers k such that 47^k-46 is prime. 0
5, 11, 13, 53, 115, 899, 2287 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Related to hyperperfect numbers of a certain form.
LINKS
J. S. McCranie, A study of hyperperfect numbers, J. Int. Seqs. Vol. 3 (2000) #P00.1.3.
MATHEMATICA
Select[Range[2000], PrimeQ[47^# - 46] &] (* Vincenzo Librandi, Sep 26 2012 *)
PROG
(PARI) is(n)=ispseudoprime(47^n-46) \\ Charles R Greathouse IV, Jun 13 2017
(Python)
from sympy import isprime
def afind(limit, startat=1):
pow47 = 47**startat
for k in range(startat, limit+1):
if isprime(pow47 - 46): print(k, end=", ")
pow47 *= 47
afind(900) # Michael S. Branicky, May 11 2021
CROSSREFS
Sequence in context: A116440 A098720 A115091 * A018607 A032481 A365502
KEYWORD
nonn,more
AUTHOR
EXTENSIONS
a(6) from Vincenzo Librandi, Sep 26 2012
a(7) from Michael S. Branicky, May 11 2021
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 May 8 17:32 EDT 2024. Contains 372340 sequences. (Running on oeis4.)