A212490 Least number m > 1 such that A000203(x)*x = m has exactly n solutions.
6, 336, 333312, 5418319872, 1584858562560
Offset: 1
Examples
For n=3, 333312 has exactly 3 solutions: sigma(434)*434 = 333312, sigma(372)*372 = 333312, and sigma(336)*336 = 333312; therefore a(3) = 333312.
References
- R. K. Guy, Unsolved Problems in Theory of Numbers, Springer-Verlag, Third Edition, 2004, B11.
Links
- David A. Corneth, Pari program
- Passawan Noppakaew and Prapanpong Pongsriiam, Product of Some Polynomials and Arithmetic Functions, J. Int. Seq. (2023) Vol. 26, Art. 23.9.1.
Programs
-
PARI
isok(k, n) = sumdiv(k, d, d*sigma(d) == k) == n; a(n) = my(k=2); while (! isok(k,n), k++); k; \\ Michel Marcus, Oct 28 2020
-
PARI
\\ See Corneth link. David A. Corneth, Nov 01 2020
Extensions
a(5) from Donovan Johnson, May 20 2012
Comments