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 A274398 #38 Jan 28 2017 00:24:05 %S A274398 1,13,-83,649,-59,2089,-7379,8829,-410479,84273,-4091,2032897,-867947, %T A274398 951417,-47224023,2228469,-262139,19669687769,-1048571,1461748549, %U A274398 -1500199283,746586657,-16777211,747004180629,-6777994779,7113541809,-13667368865299,29908738140693 %N A274398 Numerators of 1/2 + sum(chi(p)^(4*n / (p-1))/p) where the sum is over primes p of the form 4k+1 such that p-1 divides 4*n and the numbers chi(p) are given by A002172. %H A274398 Seiichi Manyama, <a href="/A274398/b274398.txt">Table of n, a(n) for n = 1..3239</a> %F A274398 The n-th Hurwitz number is A002306(n)/A047817(n) = a(n)/A047817(n) + A002770(n). %F A274398 a(n) = A002306(n) - A002770(n) * A047817(n) for n > 1. %e A274398 H_1 = 1/10 = 1/2 - 2/5 = 1/10, so a(1) = 1. %e A274398 H_2 = 3/10 = 1/2 + 2^2/5 - 1 = 13/10 - 1, so a(2) = 13. %e A274398 H_3 = 567/130 = 1/2 - 2^3/5 + 6/13 + 5 = -83/130 + 5, so a(3) = -83. %e A274398 H_4 = 43659/170 = 1/2 + 2^4/5 + 2/17 + 253 = 649/170 + 253, so a(4) = 649. %t A274398 nmax = 28; H[n_] := (n*(4*n - 2)!/(2^(4*n - 2)))*SeriesCoefficient[ WeierstrassP[z, {4, 0}], {z, 0, 4*n - 2}]; pp = Select[Prime[Range[2 nmax]], Mod[#, 4] == 1 &]; Scan[(chi[#] = -Sum[JacobiSymbol[x^3 - x, #], {x, 0, # - 1}])&, pp]; a[n_] := 1/2 + Sum[If[Divisible[4 n, p - 1], chi[p]^(4*n/(p - 1))/p, 0], {p, pp}] // Numerator; Array[a, nmax] (* _Jean-François Alcover_, Oct 22 2016 *) %Y A274398 Cf. A002172, A002306, A002770, A047817. %K A274398 sign %O A274398 1,2 %A A274398 _Seiichi Manyama_, Sep 26 2016