cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A140645 Digit sums of highly composite numbers.

Original entry on oeis.org

1, 2, 4, 6, 3, 6, 9, 12, 6, 3, 9, 6, 9, 9, 12, 9, 15, 9, 9, 18, 9, 9, 9, 9, 18, 18, 9, 18, 18, 18, 18, 18, 18, 18, 36, 18, 27, 18, 18, 18, 18
Offset: 1

Views

Author

Parthasarathy Nambi, Jul 08 2008

Keywords

Comments

Except for the first three terms, all others are multiples of 3.

Examples

			2162160 is a highly composite number whose digit sum is 18.
		

Crossrefs

Programs

  • Mathematica
    HCN=NestList[Function[last,Module[{d = DivisorSigma[0, last]},NestWhile[# + 1 &, last, DivisorSigma[0, #] <= d &]]], 1,40]; DigitSum/@HCN (* James C. McMahon, Jul 12 2025 *)

Formula

a(n) = A007953(A002182(n)). - Amiram Eldar, Nov 13 2019