login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A260336 Numerators of Glaisher's J-numbers J_n. 1
10, 34, 910, 415826, 3786350, 455594594, 226816276970, 16546152735874, 4616987879606830, 4799607558341375462, 674014218452089817870, 339274220304210587466434, 5429636257086663655134162970, 138634566648793083166951423714 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
J. W. L. Glaisher, On a set of coefficients analogous to the Eulerian numbers, Proc. London Math. Soc., 31 (1899), 216-235.
EXAMPLE
10/3, 34, 910, 415826/9, 3786350, 455594594, 226816276970/3, 16546152735874, 4616987879606830, ...
MAPLE
In := proc(n)
1/(exp(x)+exp(-x)+1) ;
coeftayl(%, x=0, 2*n) ;
%*(2*n)!*(-1)^n*3/2 ;
end proc:
Jn := proc(n)
(2^(2*n+1)+2)*In(n) ;
end proc:
A260336 := proc(n)
numer(Jn(n)) ;
end proc: # R. J. Mathar, Aug 02 2015
MATHEMATICA
GI[n_] := SeriesCoefficient[1/(Exp[x]+Exp[-x]+1), {x, 0, 2n}]*(2n)!*(-1)^n*3/2;
GJ[n_] := (2^(2n+1)+2)*GI[n];
a[n_] := Numerator[GJ[n]];
Table[a[n], {n, 1, 14}] (* Jean-François Alcover, Apr 15 2023, after R. J. Mathar *)
CROSSREFS
Cf. A047789 (denominators).
Sequence in context: A272365 A230895 A254674 * A010818 A243939 A065195
KEYWORD
nonn,frac
AUTHOR
N. J. A. Sloane, Jul 29 2015
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 10:07 EDT 2024. Contains 371905 sequences. (Running on oeis4.)