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!)
A252541 Numbers k such that A146076(A000593(k)) = k. 1
6, 14, 62, 254, 756, 16382, 262142, 1048574, 39606840, 4294967294 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
All integers of the form 2*(2^p-1) where 2^p-1 is prime are terms (see A139257). The terms that are not of this form are 756, 39606840. Are there any other? [Edited by Michel Marcus, Nov 22 2022]
All terms are even because all terms of A146076 are even. - Michel Marcus, Nov 22 2022
a(11) > 10^10. - Michel Marcus, Nov 22 2022
LINKS
EXAMPLE
14 is in the sequence because the divisors are {1, 2, 7, 14} => sum of odd divisors 1 + 7 = 8. The divisors of 8 are {1, 2, 4, 8} => sum of even divisors = 2 + 4 + 8 = 14. That is, A146076(A000593(14)) = A146076(8) = 14.
MATHEMATICA
f[n_]:= Plus @@ Select[ Divisors@ n, OddQ]; g[n_]:= Plus @@ Select[ Divisors@ n, EvenQ]; Do[If[g[f[n]]==n, Print[n]], {n, 1, 10^8}]
PROG
(PARI) sod(n) = sigma(n>>valuation(n, 2)); \\ A000593
sed(n) = if (n%2, 0, 2*sigma(n/2)); \\ A146076
isok(n) = sed(sod(n)) == n;
lista(nn) = forstep(n=2, nn, 2, if(isok(n), print1(n, ", "))); \\ Michel Marcus, Nov 22 2022
CROSSREFS
Cf. A000593 (sum of odd divisors), A146076 (sum of even divisors), A252540.
Sequence in context: A118432 A032404 A059954 * A333103 A139257 A056842
KEYWORD
nonn,more
AUTHOR
Michel Lagneau, Dec 18 2014
EXTENSIONS
a(10) from Michel Marcus, Nov 22 2022
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 19 21:09 EDT 2024. Contains 371798 sequences. (Running on oeis4.)