cp's OEIS Frontend

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.

A145662 a(n) = numerator of polynomial of genus 1 and level n for m = 5 = A[1,n](5).

This page as a plain text file.
%I A145662 #15 Jan 21 2019 04:18:50
%S A145662 0,5,55,835,8365,41837,209195,7321885,73218955,1098284605,5491423277,
%T A145662 302028282755,1510141416085,98159192073245,490795960391965,
%U A145662 2453979801983849,24539798019883535,2085882831690821195
%N A145662 a(n) = numerator of polynomial of genus 1 and level n for m = 5 = A[1,n](5).
%C A145662 For numerator of polynomial of genus 1 and level n for m = 1 see A001008
%C A145662 Definition: The polynomial A[1,2n+1](m) = A[genus 1,level n] is here defined as
%C A145662 Sum_{d=1..n-1} m^(n-d)/d.
%C A145662 Few first A[1,n](m):
%C A145662 n=1: A[1,1](m)= 0;
%C A145662 n=2: A[1,2](m)= m;
%C A145662 n=3: A[1,3](m)= m/2 + m^2;
%C A145662 n=4: A[1,4](m)= m/4 + m^2/3 + m^3/2 + m^4.
%C A145662 General formula which uses these polynomials is:
%C A145662 (1/(n+1))Hypergeometric2F1[1,n,n+1,1/m] = Sum_{x>=0} m^(-x)/(x+n) = m^n*arctanh((2m-1)/(2m^2-2m+1)) - A[1,n](m) = m^n*log(m/(m-1)) - A[1,n](m).
%C A145662 The sequence of denominators is ?, 1, 2, 6, 12, 12, 12, 84, ... - _Matthew J. Samuel_, Jan 30 2011
%p A145662 A145662 := proc(n) add( 5^(n-d)/d,d=1..n-1) ; numer(%) ; end proc: # _R. J. Mathar_, Feb 01 2011
%t A145662 m = 5; aa = {}; Do[k = 0; Do[k = k + m^(r - d)/d, {d, 1, r - 1}]; AppendTo[aa, Numerator[k]], {r, 1, 30}]; aa
%Y A145662 Cf. A145609-A145640, A145656, A145658, A145660, A145664, A145666.
%Y A145662 Cf. A006245.
%K A145662 frac,nonn
%O A145662 1,2
%A A145662 _Artur Jasinski_, Oct 16 2008