OFFSET
1,1
COMMENTS
If there are no common terms with A324718, then there are no odd perfect numbers.
The following subsequence of terms k are those with sigma(k) == 2 (mod 4): 3725, 7281, 15325, 24525, 25713, 32481, 51633, 52209, 59121, 63553, 114417, 117009, 120753, 121725, 122725, 123245, 130833, 208881, 236925, 241325, 245725, 253325, 261297, 384993, 411633, 457713, 468081, 482481, 482525, 482725, 483325, ..., and are thus present in A191218.
LINKS
MATHEMATICA
Select[Range[1, 10^4, 2], Block[{s = DivisorSigma[1, #]}, BitOr[2*#, s] == 2* BitOr[#, s-#]] &] (* Paolo Xausa, Mar 11 2024 *)
PROG
(PARI) for(n=1, oo, if((n%2) && (2*(bitor(n, sigma(n)-n))==bitor(n+n, sigma(n))), print1(n, ", ")));
CROSSREFS
KEYWORD
nonn,look
AUTHOR
Antti Karttunen, Mar 14 2019
STATUS
approved