A326134 Numbers k such that A326057(k) is equal to A252748(k) and A252748(k) is not 1.
6, 28, 69, 91, 496, 2211, 4825, 8128, 12639, 22799825, 33550336, 60406599, 68258725, 569173299, 794579511, 984210266, 2830283326, 8589869056, 10759889913, 80295059913, 85871289682
Offset: 1
Examples
28 is a term as A252748(28) = 43 > 1 and A286385(28) = 43, which is a multiple of 43. 69 is a term as A252748(69) = 7 > 1 and A286385(69) = 49 is a multiple of 7. 91 is a term as A252748(91) = 5 > 1 and A286385(91) = 75 is a multiple of 5.
Links
Crossrefs
Programs
-
Mathematica
Select[Range[10^5], And[#3 - #1 != 1, GCD[#3 - #1, #3 - #2] == #3 - #1] & @@ {2 #, DivisorSigma[1, #], Times @@ Map[#1^#2 & @@ # &, FactorInteger[#] /. {p_, e_} /; e > 0 :> {Prime[PrimePi@ p + 1], e}] - Boole[# == 1]} &] (* Michael De Vlieger, Feb 22 2021 *)
-
PARI
A003961(n) = my(f = factor(n)); for (i=1, #f~, f[i, 1] = nextprime(f[i, 1]+1)); factorback(f); \\ From A003961 isA326134(n) = { my(s = A003961(n), t = (s-(2*n)), u = s-sigma(n)); ((1!=t)&&!(u%t)&&((u/t)>0)); };
Extensions
a(18) from Antti Karttunen, Dec 14 2024
a(19)..a(21) from Antti Karttunen (from the b-file of A378980 computed by Amiram Eldar), Dec 20 2024
Comments