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.

A145624 Denominator of the polynomial A_l(x) = Sum_{d=1..l-1} x^(l-d)/d for index l=2n+1 evaluated at x=8.

This page as a plain text file.
%I A145624 #13 Jul 04 2017 14:37:03
%S A145624 1,3,15,105,315,3465,45045,18018,153153,14549535,14549535,334639305,
%T A145624 1673196525,5019589575,145568097675,18050444111700,265447707525,
%U A145624 265447707525,9821565178425,9821565178425,57526310330775
%N A145624 Denominator of the polynomial A_l(x) = Sum_{d=1..l-1} x^(l-d)/d for index l=2n+1 evaluated at x=8.
%C A145624 For numerators see A145623. For general properties of A_l(x) see A145609.
%H A145624 Robert Israel, <a href="/A145624/b145624.txt">Table of n, a(n) for n = 1..1150</a>
%F A145624 Sum_{n >= 1} (A145623(n)/a(n))*x^n = (32*sqrt(x)*log((1+sqrt(x))/(1-sqrt(x))) - 4*log(1-x))/(1-64*x). - _Robert Israel_, Mar 09 2016
%p A145624 G:= (32*sqrt(x)*ln((1-sqrt(x))/(1+sqrt(x))) + 4*ln(1-x))/(64*x-1):
%p A145624 S:=series(G,x,101):
%p A145624 seq(denom(coeff(S,x,n)),n=1..100); # _Robert Israel_, Mar 09 2016
%t A145624 m = 8; aa = {}; Do[k = 0; Do[k = k + m^(2 r + 1 - d)/d, {d, 1, 2 r}]; AppendTo[aa, Denominator[k]], {r, 1, 30}]; aa (* _Artur Jasinski_, Oct 14 2008 *)
%Y A145624 Cf. A145609 - A145640.
%K A145624 frac,nonn
%O A145624 1,2
%A A145624 _Artur Jasinski_, Oct 14 2008
%E A145624 Edited by _R. J. Mathar_, Aug 21 2009