login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A104364
Primes of the form A104350(k) - 1.
9
5, 11, 59, 179, 1259, 7559, 37799, 415799, 1135133999, 5499724229999, 29220034833989999, 1408101540804746673385499999, 43673268652925265723884051023987499999
OFFSET
1,1
LINKS
MATHEMATICA
Select[FoldList[Times, Array[FactorInteger[#][[-1, 1]] &, 100]] - 1, PrimeQ] (* Amiram Eldar, Apr 08 2024 *)
PROG
(PARI) gpf(n) = {my(p = factor(n)[, 1]); if(n == 1, 1, p[#p]); }
lista(nmax) = {my(r = 1); for(k = 1, nmax, r * = gpf(k); if(isprime(r-1), print1(r-1, ", "))); } \\ Amiram Eldar, Apr 08 2024
CROSSREFS
Intersection of A104357 and A000040.
Sequence in context: A104358 A104359 A104357 * A136669 A208768 A057824
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, Mar 06 2005
STATUS
approved