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!)
A051900 Minimal 2^n safe-primes: a(n) = 2^n*A051886(n) + 1 (a prime number). 3

%I #35 Dec 14 2020 15:20:42

%S 5,13,17,113,97,193,257,769,11777,13313,59393,12289,40961,114689,

%T 65537,2424833,6946817,786433,5767169,7340033,23068673,155189249,

%U 595591169,1224736769,167772161,469762049,2281701377,3489660929,12348030977,3221225473

%N Minimal 2^n safe-primes: a(n) = 2^n*A051886(n) + 1 (a prime number).

%C Equivalently, a(n) is the smallest prime p such that (p-1)/gpf(p-1) = 2^n where gpf(m) is the greatest prime factor of m, A006530. Subsequence of A074781, primes p such that the ratio (p-1)/gpf(p-1) = 2^k. - _Bernard Schott_, Dec 14 2020

%D Richard K. Guy, Unsolved Problems in Number Theory, 3rd Edition, Springer, 2004, Section B46, p. 154.

%e 1 + 2^11*A051886(11) = 2048*29 + 1 = 59393 = a(11) is the smallest q prime so that (q-1)/2048 is also a (minimal, generalized Germain-) prime. The 101st term is 2385718429629527733616795432517633 = 1 + (2^101)*941.

%p alias(pf = NumberTheory:-PrimeFactors): gpf := n -> max(pf(n)):

%p a := proc(n) local p, q; q := 2^n; p := 2;

%p while (p-1) <> gpf(p-1)*q

%p do p := nextprime(p) od;

%p p end: seq(a(n), n=1..14); # _Peter Luschny_, Dec 14 2020

%t f[n_] := Block[{e = IntegerExponent[n - 1, 2]}, g = (n - 1)/2^e; If[g == 1, e - 1, If[ PrimeQ[g], e, -1]]]; t = Table[0, {50}]; p = 3; While[p < 13000000000, a = f@ p; If[t[[a + 1]] == 0, t[[a + 1]] = p; Print[{a, p}]]; p = NextPrime@ p]; t (* _Robert G. Wilson v_, Jun 17 2012 *)

%t f[n_] := Block[{k = 1}, While[ !PrimeQ[2^n*Prime[k] + 1], k++]; 2^n*Prime[k] + 1]; Array[f, 32, 0] (* _Robert G. Wilson v_, Jun 17 2012 *)

%Y Cf. A005385, A006530, A051886, A074781.

%K nonn

%O 1,1

%A _Labos Elemer_, Dec 16 1999

%E Name clarified by _Joerg Arndt_, Jun 18 2012

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 April 19 18:05 EDT 2024. Contains 371798 sequences. (Running on oeis4.)