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 A171183 #4 Feb 11 2014 19:05:43 %S A171183 14,957,1334,1634,2402,2685,20145,33998,42818,74918,79826,79833,84134, %T A171183 111506,122073,138237,147454,166934,201597,274533,289454,347738, %U A171183 383594,416577,440013,544334,605985,649154,655005,1060802,1642154,1674513 %N A171183 Numbers n such that sigmawt(n) = sigmawt(n+1), where sigmawt(n) is the sum of the divisors of n weighted by divisor multiplicity in n. %H A171183 Ray Chandler, <a href="/A171183/b171183.txt">Table of n, a(n) for n=1..200</a> %t A171183 divmult[d_, n_] := Module[{output, i}, If[d == 1, output = 1, If[d == n, output = 1, i = 0; While[Mod[n, d^(i + 1)] == 0, i = i + 1]; output = i]]; output]; dmt[n_] := Module[{divs, l}, divs = Divisors[n]; l = Length[divs]; Sum[divmult[divs[[i]], n]*divs[[i]], {i, 1, l}]]; l = {}; Do[If[dmt[i] == dmt[i + 1], l = Append[l, i]], {i, 1, 10^6}]; l %Y A171183 See A168512 for definition of divisor multiplicity. %K A171183 nonn %O A171183 1,1 %A A171183 _Joseph L. Pe_, Dec 05 2009 %E A171183 Extended by _Ray Chandler_, Dec 08 2009