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!)
A348935 Numbers k congruent to 1 or 5 mod 6, for which A064989(A064989(sigma(k^2))) < A064989(A064989(k^2)), where A064989 shifts the prime factorization one step towards lower primes, and sigma is the sum of divisors function. 3
19, 23, 31, 37, 43, 47, 53, 61, 67, 73, 79, 83, 97, 103, 107, 109, 113, 127, 133, 137, 139, 149, 151, 157, 163, 179, 181, 191, 193, 197, 199, 211, 217, 223, 229, 233, 239, 241, 247, 251, 257, 259, 263, 269, 271, 277, 281, 283, 299, 301, 307, 311, 313, 317, 331, 335, 337, 341, 347, 349, 353, 359, 367, 371, 373, 379 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Square roots of squares present in A348753.
Any hypothetical odd term y of A005820 must by necessity be a square. If y is also a nonmultiple of 3, then the square root x = A000196(y) of such a number y must satisfy the condition that for all nontrivial unitary divisor pairs d and x/d [with gcd(d,x/d) = 1, 1 < d < x], the other unitary divisor (d) should reside in this sequence, and the other divisor (x/d) in A348936. The explanation is similar to the one given in A348738. See also comments in A348933.
In range 1..2^20, there are 256143 numbers in this sequence and 93381 numbers in A348936.
The composites in this sequence are: 133, 217, 247, 259, 299, 301, 335, 341, 371, etc.
LINKS
MATHEMATICA
f[2, e_] := 1; f[p_, e_] := NextPrime[p, -1]^e; s[1] = 1; s[n_] := Times @@ f @@@ FactorInteger[n]; Select[Range[400], MemberQ[{1, 5}, Mod[#, 6]] && s[s[DivisorSigma[1, #^2]]] < s[s[#^2]] &] (* Amiram Eldar, Nov 04 2021 *)
PROG
(PARI)
A064989(n) = {my(f); f = factor(n); if((n>1 && f[1, 1]==2), f[1, 2] = 0); for (i=1, #f~, f[i, 1] = precprime(f[i, 1]-1)); factorback(f)};
isA348935(n) = ((n%2)&&(n%3)&&(A064989(A064989(sigma(n^2))) < A064989(A064989(n^2))));
CROSSREFS
Sequence in context: A364458 A217281 A322960 * A019360 A269666 A007639
KEYWORD
nonn
AUTHOR
Antti Karttunen, Nov 04 2021
STATUS
approved

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 16 07:08 EDT 2024. Contains 371698 sequences. (Running on oeis4.)