OFFSET
0,2
COMMENTS
The numerators are given in A278141, where also details and a reference are given.
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..100
FORMULA
a(n) = denominator(r(n)), with the rationals r(n) = Sum_{k=0..n} (1+8*k)*(risefac(-1/4,k)/k!)^4. The rising factorial is risefac(x,k) = Product_{j=0..k-1} (x+j), and risefac(x,0) = 1.
a(n) = denominator( Sum_{k=0..n} (1+8*k)*(binomial(-1/4,k))^4 ).
EXAMPLE
See A278141.
MATHEMATICA
Denominator[Table[Sum[(1 + 8*k)*(Binomial[-1/4, k])^4, {k, 0, n}], {n, 0, 10}]] (* G. C. Greubel, Jan 10 2017 *)
PROG
(PARI) for (n = 0, 10, print1 (denominator(sum (k = 0, n, (1+8*k)*(binomial (-1/4, k))^4)), ", ")) \\ G. C. Greubel, Jan 10 2017
CROSSREFS
KEYWORD
nonn,frac,easy
AUTHOR
Wolfdieter Lang, Nov 14 2016
STATUS
approved