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!)
A094502 a(n) = A000203(A046528(n)): sigma of those numbers whose sigma is a power of 2, in order of appearance. 3
1, 4, 8, 32, 32, 128, 128, 256, 512, 1024, 1024, 4096, 4096, 8192, 16384, 32768, 32768, 65536, 131072, 131072, 262144, 262144, 524288, 524288, 1048576, 1048576, 1048576, 2097152, 2097152, 4194304, 4194304, 4194304, 4194304, 8388608 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Observe that certain powers of 2 do not arise as sum of divisors of something: 2,16,64,2048. Are there more? Yes, see A094505 and A078426.
LINKS
FORMULA
a(n) = 2^A048947(n). - R. J. Mathar, Sep 22 2016
MATHEMATICA
{ta=Table[0, {100}], u=1}; Do[If[IntegerQ[Log[2, DivisorSigma[1, n]]], Print[n]; ta[[u]]=n; u=u+1], {n, 1, 100000000}] DivisorSigma[1, ta]
PROG
(PARI) isok(n) = (n==1) || (ispower(sigma(n), , &r) && (r==2));
for(n=1, 1e7, if(isok(n), print1(sigma(n)", "))) \\ Altug Alkan, Nov 01 2015
CROSSREFS
Sequence in context: A149091 A149092 A188117 * A162459 A129195 A180098
KEYWORD
nonn
AUTHOR
Labos Elemer, Jun 02 2004
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 July 13 19:40 EDT 2024. Contains 374286 sequences. (Running on oeis4.)