A163261 Numerators of fractions in the approximation of the square root of 2 by means of: f(n)= 3f(n-1)/(f(n-1)^2+1); with f(1)= 1.
1, 3, 18, 702, 1038258, 2292015792222, 11135478955084481409955218, 263108590829588406010634295716681354685770554450302
Offset: 1
Programs
-
PARI
f(n) = if (n==1, 1, 3*f(n-1)/(f(n-1)^2+1)); a(n) = numerator(f(n)); \\ Michel Marcus, Mar 05 2019
Formula
a(n+1) = 3*a(n)*A163262(n). - Philippe Deléham, Oct 11 2011
Extensions
More terms from Michel Marcus, Mar 05 2019
Comments