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.

A378099 The smallest number whose sum of proper divisors (aliquot parts) is the repunit number (10^n - 1)/9, denoted by R_n.

Original entry on oeis.org

2, 21, 321, 7721, 184729, 185145, 21110729, 54929017, 134099385, 3331670169
Offset: 1

Views

Author

Shyam Sunder Gupta, Nov 16 2024

Keywords

Examples

			a(4) = 7721 because 7721 is the smallest number whose sum of proper divisors is R_4 = 1111.
		

Crossrefs

Programs

  • PARI
    a(n) = my(k=1); while (sigma(k)-k != (10^n - 1)/9, k++); k; \\ Michel Marcus, Nov 16 2024