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”).
%I #7 Dec 08 2024 17:17:50
%S 4,9,125,49,161051,2197,410338673,130321,12167,12200509765705829,
%T 923521,94931877133,1555098314991537910888601,11688200277601,
%U 10779215329,1174711139837,15413179794770734626518662321719325259,191707312997281,8182718904632857144561,19118715823042429491729074582041753821507871751,58871586708267913
%N a(n) = prime(n)^A378744(n).
%C Terms are all present in A337372, i.e., are primitively prime-shift abundant.
%H Antti Karttunen, <a href="/A378745/b378745.txt">Table of n, a(n) for n = 1..170</a>
%F a(n) = A000040(n)^A378744(n).
%o (PARI) A378745(n) = { my(p=prime(n), q=prime(1+n)); for(k=1,oo,if(q^k > 2*(p^k), return(p^k))); };
%Y Cf. A000040, A003961, A337372, A378744.
%Y Cf. also A378746.
%K nonn,new
%O 1,1
%A _Antti Karttunen_, Dec 08 2024