login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A325981 Odd composites for which gcd(A325977(n), A325978(n)) is equal to abs(A325977(n)). 16

%I #26 Jun 18 2019 18:12:23

%S 45,495,585,765,855,1305,18837,21525,31635,38295,45315,50445,51255,

%T 60435,63495,68085,77265,96615,1403115,2446353,3411975,3999465,

%U 4091745,4233537,4287255,4631319,10813425,10967085,11490345,15578199,16143309,16329645,16633071,17179515,17311203,17355915,21159075,21933975,22579725

%N Odd composites for which gcd(A325977(n), A325978(n)) is equal to abs(A325977(n)).

%C Provided that A325977 and A325978 are never zero on same n, these are odd composite numbers n such that A325977(n) is not zero and divides A325978(n).

%C Based on the first 147 terms it seems that this sequence is a subsequence of A072357, that is each term has exactly one prime factor with exponent 2, with one or more other prime factors that are all unitary (i.e., each term satisfies A001222(x) - A001221(x) = 1). On the other hand, it has been proved that no odd perfect number, if such numbers exist at all, can have such a factorization (see A326137 and a link to P. P. Nielsen's paper there).

%C Nineteen initial terms factorize as:

%C 45 = 3^2 * 5^1,

%C 495 = 3^2 * 5^1 * 11^1,

%C 585 = 3^2 * 5^1 * 13^1,

%C 765 = 3^2 * 5^1 * 17^1,

%C 855 = 3^2 * 5^1 * 19^1,

%C 1305 = 3^2 * 5^1 * 29^1,

%C 18837 = 3^2 * 7^1 * 13^1 * 23^1,

%C 21525 = 3^1 * 5^2 * 7^1 * 41^1,

%C 31635 = 3^2 * 5^1 * 19^1 * 37^1,

%C 38295 = 3^2 * 5^1 * 23^1 * 37^1,

%C 45315 = 3^2 * 5^1 * 19^1 * 53^1,

%C 50445 = 3^2 * 5^1 * 19^1 * 59^1,

%C 51255 = 3^2 * 5^1 * 17^1 * 67^1,

%C 60435 = 3^2 * 5^1 * 17^1 * 79^1,

%C 63495 = 3^2 * 5^1 * 17^1 * 83^1,

%C 68085 = 3^2 * 5^1 * 17^1 * 89^1,

%C 77265 = 3^2 * 5^1 * 17^1 * 101^1,

%C 96615 = 3^2 * 5^1 * 19^1 * 113^1,

%C 1403115 = 3^1 * 5^1 * 7^2 * 23^1 * 83^1,

%C and the 62nd term as a(62) = 2919199437 = 3^2 * 7^1 * 11^1 * 43^1 * 163^1 * 601^1.

%C If we select a subsequence of terms for which the quotient A325978(n)/A325977(n) is positive, then we are left with the following numbers: 495, 585, 31635, 38295, 45315, 51255, 60435, 63495, 1403115, 3999465, etc. which is a subsequence of A326070.

%H Antti Karttunen (terms 1-62) & Giovanni Resta, <a href="/A325981/b325981.txt">Table of n, a(n) for n = 1..147</a>

%H <a href="/index/O#opnseqs">Index entries for sequences where any odd perfect numbers must occur</a>

%o (PARI)

%o A034448(n) = { my(f=factorint(n)); prod(k=1, #f~, 1+(f[k, 1]^f[k, 2])); }; \\ After code in A034448

%o A034460(n) = (A034448(n) - n);

%o A048250(n) = factorback(apply(p -> p+1,factor(n)[,1]));

%o A325313(n) = (A048250(n) - n);

%o A325977(n) = ((A034460(n)+A325313(n))/2);

%o A162296(n) = sumdiv(n, d, d*(1-issquarefree(d)));

%o A325314(n) = (n - A162296(n));

%o A048146(n) = (sigma(n)-A034448(n));

%o A325814(n) = (n-A048146(n));

%o A325978(n) = ((A325314(n)+A325814(n))/2);

%o A325975(n) = gcd(A325977(n), A325978(n));

%o isA325981(n) = ((n%2)&&!isprime(n)&&(A325975(n)==abs(A325977(n))));

%o \\ Or alternatively as:

%o isA325981(n) = if(!(n%2)||isprime(n),0,my(x = A325977(n), y = A325978(n)); (!x&&!y)||(x&&!(y%x)));

%Y Cf. A072357, A228058, A325973, A325974, A325975, A325977, A325978, A325979, A326064, A326070, A326071, A326137.

%K nonn

%O 1,1

%A _Antti Karttunen_, Jun 02 2019

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 05:19 EDT 2024. Contains 371782 sequences. (Running on oeis4.)