cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A351541 Even numbers k that have an odd prime factor p such that p^(1+valuation(k,p)) divides sigma(k), but p does not divide A003961(k), where A003961 is fully multiplicative with a(p) = nextprime(p), and sigma is the sum of divisors function.

This page as a plain text file.
%I A351541 #17 Feb 16 2022 17:05:49
%S A351541 364,760,1092,1148,1160,1358,1490,1782,1990,2324,2360,2716,2912,2980,
%T A351541 3160,3276,3388,3430,3444,3490,3560,3564,3892,3980,4004,4074,4102,
%U A351541 4360,4490,4676,4990,5068,5302,5320,5432,5510,5560,5960,5990,6188,6244,6804,6860,6916,6972,6980,7028,7128,7160,7462,7960,8120,8148
%N A351541 Even numbers k that have an odd prime factor p such that p^(1+valuation(k,p)) divides sigma(k), but p does not divide A003961(k), where A003961 is fully multiplicative with a(p) = nextprime(p), and sigma is the sum of divisors function.
%C A351541 Even numbers k that have an odd prime factor prime(i) such that prime(i-1) is not a factor of k, and prime(i)^(1+A286561(k,prime(i))) divides sigma(k).
%H A351541 <a href="/index/Pri#prime_indices">Index entries for sequences computed from indices in prime factorization</a>
%H A351541 <a href="/index/Si#SIGMAN">Index entries for sequences related to sigma(n)</a>
%e A351541 364 = 2^2 * 7^1 * 13^1 is present as sigma(364) = 784 = 2^4 * 7^2, which thus has a shared prime factor 7 with 364, but occurring with larger exponent, and with no prime 5 (which is the previous prime before 7) present in the prime factorization of 364.
%t A351541 Select[Range[2, 8200, 2], Function[{k, s, facs, t}, AnyTrue[DeleteCases[facs[[All, 1]], 2], And[Mod[s, #^(1 + IntegerExponent[k, #])] == 0, Mod[t, #] != 0] &]] @@ {#1, #2, #3, Apply[Times, (NextPrime[#1])^#2 & @@@ #3]} & @@ {#, DivisorSigma[1, #], FactorInteger[#]} &] (* _Michael De Vlieger_, Feb 16 2022 *)
%o A351541 (PARI)
%o A351541 A003961(n) = { my(f = factor(n)); for(i=1, #f~, f[i, 1] = nextprime(f[i, 1]+1)); factorback(f); };
%o A351541 Aux351541(n) = { my(f=factor(n),s=sigma(n),u=A003961(n)); sum(k=1,#f~,(f[k,1]%2) && 0!=(u%f[k,1]) && (0==(s%(f[k,1]^(1+f[k,2]))))); };
%o A351541 isA351541(n) = (!(n%2) && Aux351541(n)>0);
%Y A351541 Cf. A000203, A003961.
%Y A351541 Subsequence of A351540, and of A351542 and of A351543.
%K A351541 nonn
%O A351541 1,1
%A A351541 _Antti Karttunen_, Feb 16 2022