login
A160994
a(n) is the least prime number p such that every sum of two or more divisors of p^n is composite.
0
3, 7, 7, 19, 19, 139, 151, 211, 211, 211, 421, 2311, 2311, 92401, 120121, 120121, 180181, 2312311
OFFSET
1,1
MATHEMATICA
(* first do *) Needs["Combinatorica`"] (* then *) f[n_] := Block[{d = Divisors@n, k, mx}, k = 1 + Length@d; mx = 2^Length[d]; While[k < mx && !PrimeQ[Plus @@ NthSubset[k, d]], k++ ]; If[k == mx, Length@d, 0]];
a[n_] := a[n] = Module[{p = If[n == 1, 2, a[n-1]]}, While[f[p^n] == 0, p = NextPrime[p]]; p]; Array[a, 13] (* second part of the program added by Amiram Eldar, Jul 30 2024 *)
CROSSREFS
Sequence in context: A239047 A229521 A263337 * A113833 A212286 A157102
KEYWORD
nonn,more
AUTHOR
Robert G. Wilson v, Jun 01 2009
EXTENSIONS
Offset changed to 1 and name corrected by Amiram Eldar, Jul 30 2024
STATUS
approved