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 A280043 #14 Sep 06 2018 09:56:25 %S A280043 1,2,6,42,43,86,258,77658 %N A280043 Solutions to the congruence 1^n+2^n+...+n^n == 43 (mod n). %H A280043 M. A. Alekseyev, J. M. Grau, A. M. Oller-Marcen. Computing solutions to the congruence 1^n + 2^n + ... + n^n == p (mod n). Discrete Applied Mathematics, 2018. doi:<a href="http://doi.org/10.1016/j.dam.2018.05.022">10.1016/j.dam.2018.05.022</a> arXiv:<a href="http://arxiv.org/abs/1602.02407">1602.02407</a> [math.NT] %t A280043 f[n_] := Mod[Sum[PowerMod[k, n, n], {k, 1, n}] - 43, n]; %t A280043 For[n = 1, n < 80000, n++, If[f[n] == 0, Print[n]]] (* _Jean-François Alcover_, Sep 06 2018 *) %K A280043 nonn,fini,full %O A280043 1,2 %A A280043 _N. J. A. Sloane_, Dec 29 2016