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”).

A253137
a(n) = n*gcd(c(n), d(n)), where c(n) = composite numbers, d(n) = number of divisors of c(n).
0
1, 4, 12, 12, 10, 36, 14, 8, 9, 60, 22, 12, 26, 112, 15, 32, 17, 36, 38, 40, 21, 44, 23, 216, 50, 26, 216, 56, 58, 90, 62, 64, 33, 68, 35, 72, 74, 38, 312, 40, 82, 504, 86, 132, 45, 46, 94, 96, 49, 100, 612, 104, 159, 108, 55, 112, 570, 58, 118, 720, 61, 124, 63, 512, 390, 66, 134, 68, 138, 70, 852, 144, 219, 74, 150, 608, 77, 156, 948
OFFSET
1,2
COMMENTS
Occurrences of primes: 3 (17, 23, 61) in first 80 terms.
EXAMPLE
For n = 4: 4th composite number is 9. 9 has 3 divisors (1,3,9), thus gcd(9,3) * 4 = 12.
MATHEMATICA
Composites := Select[Range[2, 110], ! PrimeQ[#] &]; Composite[n_] := Last[Take[Composites, n]]; Table[GCD[Composite[n], DivisorSigma[0, Composite[n]]] n, {n, Length[Composites]}]
CROSSREFS
Sequence in context: A238581 A063608 A074258 * A378187 A120213 A005886
KEYWORD
nonn,easy
AUTHOR
STATUS
approved