A132596
X-values of solutions to the equation X*(X + 1) - 6*Y^2 = 0.
Original entry on oeis.org
0, 2, 24, 242, 2400, 23762, 235224, 2328482, 23049600, 228167522, 2258625624, 22358088722, 221322261600, 2190864527282, 21687323011224, 214682365584962, 2125136332838400, 21036680962799042, 208241673295152024
Offset: 0
- Clifford A. Pickover, The Loom of God, Tapestries of Mathematics and Mysticism, Sterling, NY, 2009, page 33.
A221074
Simple continued fraction expansion of product {n >= 0} {1 - sqrt(m)*[sqrt(m) - sqrt(m-1)]^(4*n+3)}/{1 - sqrt(m)*[sqrt(m) - sqrt(m-1)]^(4*n+1)} at m = 3.
Original entry on oeis.org
2, 8, 1, 16, 1, 96, 1, 176, 1, 968, 1, 1760, 1, 9600, 1, 17440, 1, 95048, 1, 172656, 1, 940896, 1, 1709136, 1, 9313928, 1, 16918720, 1, 92198400, 1, 167478080, 1, 912670088, 1, 1657862096, 1
Offset: 0
Product {n >= 0} {1 - sqrt(3)*(sqrt(3) - sqrt(2))^(4*n+3)}/{1 - sqrt(3)*(sqrt(3) - sqrt(2))^(4*n+1)} = 2.11180 16361 44098 52896 ...
= 2 + 1/(8 + 1/(1 + 1/(16 + 1/(1 + 1/(96 + 1/(1 + 1/(176 + ...))))))).
Since (sqrt(3) - sqrt(2))^3 = 9*sqrt(3) - 11*sqrt(2) we have the following simple continued fraction expansion:
product {n >= 0} {1 - sqrt(3)*(9*sqrt(3) - 11*sqrt(2))^(4*n+3)}/{1 - sqrt(3)*(9*sqrt(3) - 11*sqrt(2))^(4*n+1)} = 1 + 1/(16 + 1/(1 + 1/(968 + 1/(1 + 1/(17440 + 1/(1 + 1/(940896 + ...))))))).
- Peter Bala, Some simple continued fraction expansions for an infinite product, Part 1
- Index entries for linear recurrences with constant coefficients, signature (0,1,0,10,0,-10,0,-1,0,1).
A098298
Member r=13 of the family of Chebyshev sequences S_r(n) defined in A092184.
Original entry on oeis.org
0, 1, 13, 144, 1573, 17161, 187200, 2042041, 22275253, 242985744, 2650567933, 28913261521, 315395308800, 3440435135281, 37529391179293, 409382867836944, 4465682155027093, 48713120837461081, 531378647057044800, 5796451996790031721, 63229593317633304133
Offset: 0
- Colin Barker, Table of n, a(n) for n = 0..950
- S. Barbero, U. Cerruti, and N. Murru, On polynomial solutions of the Diophantine equation (x + y - 1)^2 = wxy, Rendiconti Sem. Mat. Univ. Pol. Torino (2020) Vol. 78, No. 1, 5-12.
- Index entries for sequences related to Chebyshev polynomials.
- Index entries for linear recurrences with constant coefficients, signature (12,-12,1).
-
a:=[0,1,13];; for n in [4..30] do a[n]:=12*a[n-1]-12*a[n-2]+ a[n-3]; od; a; # G. C. Greubel, May 24 2019
-
[n le 2 select n-1 else 11*Self(n-1)- Self(n-2) + 2: n in [1..30]]; // Vincenzo Librandi, Mar 06 2016
-
LinearRecurrence[{12,-12,1},{0,1,13},30] (* Harvey P. Dale, May 11 2012 *)
RecurrenceTable[{a[0] == 0, a[1] == 1, a[n] == 11 a[n-1] - a[n-2] + 2}, a, {n, 30}] (* Vincenzo Librandi, Mar 06 2016 *)
-
concat(0, Vec(x*(1+x)/((1-x)*(1-11*x+x^2)) + O(x^25))) \\ Colin Barker, Mar 06 2016
-
(x*(1+x)/((1-x)*(1-11*x+x^2))).series(x, 30).coefficients(x, sparse=False) # G. C. Greubel, May 24 2019
Showing 1-3 of 3 results.
Comments