A247473 Numbers of the form 2^k (k>=0) that are a sum of divisors of n for some n.
1, 4, 8, 32, 128, 256, 512, 1024, 4096, 8192, 16384, 32768, 65536, 131072, 262144, 524288, 1048576, 2097152, 4194304, 8388608, 16777216, 33554432, 67108864, 134217728, 268435456, 536870912, 1073741824, 2147483648, 4294967296, 8589934592, 17179869184, 34359738368
Offset: 1
Keywords
Examples
32 = 2^5 is in sequence because there are numbers n = 21 and 31 with sigma(n) = 32.
Programs
Formula
a(1) = 1, for n>=2, a(n) = 2^A180221(n-1).
Comments