login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A368063 a(n) is the least number k such that sigma(sigma(k) * k) > n * sigma(k) * k. 0
1, 2, 3, 10, 160, 12155, 26558675 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Application of A134716 (sigma(k) / k > n) to A064987.
From Daniel Suteu, Dec 21 2023: (Start)
a(7) <= 114775357632650.
a(8) <= 272113056574982766111055794421. (End)
LINKS
EXAMPLE
For n = 4, the divisors of 160 sum to 378. 160 * 378 = 60480, whose divisors sum up to 243840 > 4 * 60480.
MATHEMATICA
a={}; For[n=0, n<=6, n++, k=1; While[DivisorSigma[1, DivisorSigma[1, k]k] <= n DivisorSigma[1, k] k, k++]; AppendTo[a, k]]; a (* Stefano Spezia, Dec 10 2023 *)
PROG
(Java)
public static void main(String[] args)
{
long max = 0;
for (long c = 1; c < Math.pow(10, 8); c = c + 1)
{
if (factorSum(factorSum(c) * c) > max * factorSum(c) * c)
{
System.out.println(c + ": " + factorSum(c) * c);
max = max + 1;
}
}
}
public static long factorSum(long n)
{
long sum = 0;
for (long c = 1; c <= Math.sqrt(n); c = c + 1)
{
if (n % c == 0)
{
sum = sum + c;
if (c != Math.sqrt(n))
{
sum = sum + n / c;
}
}
}
return sum;
}
(PARI) a(n) = my(k=1); while (sigma(sigma(k)*k) <= n * sigma(k) * k, k++); k; \\ Michel Marcus, Dec 10 2023
CROSSREFS
Sequence in context: A119810 A055708 A162647 * A364140 A358391 A132536
KEYWORD
nonn,more
AUTHOR
Max Z. Scialabba, Dec 10 2023
EXTENSIONS
a(6) from Michel Marcus, Dec 10 2023
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified August 27 00:51 EDT 2024. Contains 375462 sequences. (Running on oeis4.)