A078977 Denominator of n-th convergent to e^(2/3).
1, 1, 19, 134, 153, 287, 3023, 163529, 2619487, 2783016, 5402503, 105430573, 9494154073, 237459282398, 246953436471, 484412718869, 13810509564803, 1740608617884047, 59194503517622401, 60935112135506448
Offset: 1
Programs
-
Mathematica
Denominator[Convergents[E^(2/3),20]] (* Harvey P. Dale, Dec 01 2013 *)
-
PARI
a(n)=component(component(contfracpnqn(contfrac(exp(2/3),n)),1),2) \\ (Warning: this will give only a limited number of correct terms, depending on the precision used. - The Editors, Oct 13 2009. See A078976 for better code.)