login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A242035
The numerator of h(n-k)*h(k)/h(n) where h(x) = zeta(2*x)*(4^x-2) and k = floor(n/2).
3
1, 1, 5, 49, 343, 341, 1374230, 562991, 117628797, 5722552563, 274111769750, 767094923209, 29727071936873882, 860722536439030, 65045120396044500, 1850097086237495825037, 16555136396811464938269, 962684710425111932621, 29167062964422333027973288250
OFFSET
0,3
PROG
(Sage)
h = lambda x: zeta(2*x)*(4^x-2)
A242035 = lambda n: Integer((h((n+1)//2)*h(n//2)/h(n)).numerator())
[A242035(n) for n in range(19)]
CROSSREFS
Cf. A246053 (denominator), A242050, A246051, A246052.
Sequence in context: A083224 A352371 A201358 * A093188 A218421 A293841
KEYWORD
nonn,frac
AUTHOR
Peter Luschny, Aug 12 2014
STATUS
approved