A161591 The list of the B values in the common solutions to the 2 equations 13*k + 1 = A^2, 17*k + 1 = B^2.
1, 16, 239, 3569, 53296, 795871, 11884769, 177475664, 2650250191, 39576277201, 590993907824, 8825332340159, 131788991194561, 1968009535578256, 29388354042479279, 438857301101610929, 6553471162481684656, 97863210136123658911, 1461394680879373199009
Offset: 1
Keywords
Links
- Andersen, K., Carbone, L. and Penta, D., Kac-Moody Fibonacci sequences, hyperbolic golden ratios, and real quadratic fields, Journal of Number Theory and Combinatorics, Vol 2, No. 3 pp 245-278, 2011. See Section 9.
- Index entries for linear recurrences with constant coefficients, signature (15,-1).
Programs
-
Maple
t:=0: for b from 1 to 1000000 do a:=sqrt((13*b^2+4)/17): if (trunc(a)=a) then t:=t+1: n:=(b^2-1)/17: print(t,a,b,n): end if: end do:
-
Mathematica
LinearRecurrence[{15,-1},{1,16},30] (* Harvey P. Dale, Dec 04 2015 *)
-
Sage
[(lucas_number2(n,15,1)-lucas_number2(n-1,15,1))/13 for n in range(1, 20)] # Zerinvary Lajos, Nov 10 2009
Formula
Extensions
Edited, extended by R. J. Mathar, Sep 02 2009
Comments