login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A211781
Numbers n such that Sum_(d_<n | n) tau(d_<n) / (d_<n) is integer, where d_<n = divisors of n that are less than n, tau(x) = A000005(x).
1
2, 3, 4, 5, 7, 11, 13, 17, 19, 23, 27, 29, 31, 37, 41, 43, 47, 53, 59, 61, 67, 71, 73, 79, 83, 89, 97, 101, 103, 107, 109, 113, 127, 131, 137, 139, 149, 151, 157, 163, 167, 173, 179, 181, 191, 193, 197, 199, 211, 223, 225, 227, 229, 233, 239, 241, 251, 252
OFFSET
1,1
COMMENTS
Union primes (A000040) and sequence of composite numbers: 4, 27, 225, 252, 672, 1200, ...
EXAMPLE
Number 225 is in sequence because 1/1 + 2/3 + 2/5 + 3/9 + 4/15 + 3/25 + 6/45 + 6/75 = 3 (integer).
MATHEMATICA
t = {}; Do[d2 = Sum[DivisorSigma[0, d]/d, {d, Most[Divisors[n]]}]; If[IntegerQ[d2], AppendTo[t, n]], {n, 2, 252}]; t (* T. D. Noe, Apr 26 2012 *)
CROSSREFS
Sequence in context: A036844 A284696 A033070 * A348283 A046022 A175787
KEYWORD
nonn
AUTHOR
Jaroslav Krizek, Apr 20 2012
STATUS
approved