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.
%I A158661 #2 Mar 30 2012 17:22:54 %S A158661 4,4,6,24,60,144,360,852,1968,4488,10068,22272,48780,105948,228588, %T A158661 490404,1046976,2225964,4715400,9956976,20965212,44031360,92262348, %U A158661 192920784,402629256,838827576,1744784388,3623814864,7516104564 %N A158661 Least number k such that sigma_n(k) > sigma_n(k+1), where sigma_n(k) = sum of the n-th powers of the divisors of k. %C A158661 It appears that the inequality a(n+1) > (2+2/n)*a(n) is true for n > 4. %F A158661 For n>0, a(n) = A098475(n) - 1. %e A158661 The values of the sigma_3 function (A001158) are increasing up to 25. Hence a(3)=24. %t A158661 Join[{4,4}, Table[k=Floor[NSolve[Zeta[n](x-1)^n==x^n, x, WorkingPrecision->100][[ -1,1,2]]]; While[DivisorSigma[n,k]<DivisorSigma[n,k+1], k++ ]; k, {n,2,30}]] %K A158661 nonn %O A158661 0,1 %A A158661 _T. D. Noe_, Mar 23 2009