[go: up one dir, main page]

login
Search: a134495 -id:a134495
     Sort: relevance | references | number | modified | created      Format: long | short | data
a(n) = Fibonacci(6*n + 3)/2.
+10
37
1, 17, 305, 5473, 98209, 1762289, 31622993, 567451585, 10182505537, 182717648081, 3278735159921, 58834515230497, 1055742538989025, 18944531186571953, 339945818819306129, 6100080207560938369
OFFSET
0,2
COMMENTS
Hypotenuse (z) of Pythagorean triples (x,y,z) with |2x-y|=1.
x(n) := 2*A049629(n) and y(n) := a(n), n >= 0, give all positive solutions of the Pell equation x^2 - 5*y^2 = -1. See the Gregory V. Richardson formula, where his x is the y here and A075796(n+1) = x(n). - Wolfdieter Lang, Jun 20 2013
Positive numbers n such that 5*n^2 - 1 is a square (A075796(n+1)^2). - Gregory V. Richardson, Oct 13 2002
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..795 (terms 0..100 from T. D. Noe)
A. J. C. Cunningham, Binomial Factorisations, Vols. 1-9, Hodgson, London, 1923-1929. See Vol. 1, page xxxv.
Tanya Khovanova, Recursive Sequences
Giovanni Lucca, Integer Sequences and Circle Chains Inside a Hyperbola, Forum Geometricorum (2019) Vol. 19, 11-16.
H. C. Williams and R. K. Guy, Some fourth-order linear divisibility sequences, Intl. J. Number Theory 7 (5) (2011) 1255-1277.
H. C. Williams and R. K. Guy, Some Monoapparitic Fourth Order Linear Divisibility Sequences Integers, Volume 12A (2012) The John Selfridge Memorial Volume
FORMULA
G.f.: (1-x)/(1-18*x+x^2).
a(n) = 18*a(n-1) - a(n-2), n > 1, a(0)=1, a(1)=17.
a(n) = A134495(n)/2 = A001076(2n+1).
a(n+1) = 9*a(n) + 4*sqrt(5*a(n)^2-1). - Richard Choulet, Aug 30 2007, Dec 28 2007
a(n) = ((2+sqrt(5))^(2*n+1) - (2-sqrt(5))^(2*n+1))/(2*sqrt(5)). - Dean Hickerson, Dec 09 2002
a(n) ~ (1/10)*sqrt(5)*(sqrt(5) + 2)^(2*n+1). - Joe Keane (jgk(AT)jgk.org), May 15 2002
Limit_{n->infinity} a(n)/a(n-1) = 8*phi + 5 = 9 + 4*sqrt(5). - Gregory V. Richardson, Oct 13 2002
Let q(n, x) = Sum_{i=0..n} x^(n-i)*binomial(2*n-i, i); then a(n) = q(n, 16). - Benoit Cloitre, Dec 06 2002
a(n) = 19*a(n-1)- 19*a(n-2) + a(n-3); f(x) = (sqrt(5)/10)*((2+sqrt(5))*(9+4*sqrt(5))^(x-1) - (2-sqrt(5))*(9-4*sqrt(5))^(x-1)). - Antonio Alberto Olivares, May 15 2008
a(n) = 17*a(n-1) + 17*a(n-2) - a(n-3). - Antonio Alberto Olivares, Jun 19 2008
a(n) = b(n+1) - b(n), n >= 0, with b(n) := F(6*n)/F(6) = A049660(n). First differences. See the o.g.f.s. - Wolfdieter Lang, 2012
a(n) = S(n,18) - S(n-1,18) with the Chebyshev S-polynomials (A049310). - Wolfdieter Lang, Jun 20 2013
Sum_{n >= 1} 1/( a(n) - 1/a(n) ) = 1/4^2. Compare with A001519 and A097843. - Peter Bala, Nov 29 2013
a(n) = 9*a(n-1) + 8*A049629(n-1), n >= 1, a(0) = 1. This is just the rewritten Chebyshev S(n, 18) recurrence. - Wolfdieter Lang, Aug 26 2014
From Peter Bala, Mar 23 2015: (Start)
a(n) = ( Fibonacci(6*n + 6 - 2*k) - Fibonacci(6*n + 2*k) )/( Fibonacci(6 - 2*k) - Fibonacci(2*k) ), for k an arbitrary integer.
a(n) = ( Fibonacci(6*n + 6 - 2*k - 1) + Fibonacci(6*n + 2*k + 1) )/( Fibonacci(6 - 2*k - 1) + Fibonacci(2*k + 1) ), for k an arbitrary integer.
The aerated sequence (b(n)) n>=1 = [1, 0, 17, 0, 305, 0, 5473, 0, ...] is a fourth-order linear divisibility sequence; that is, if n | m then b(n) | b(m). It is the case P1 = 0, P2 = -20, Q = 1 of the 3-parameter family of divisibility sequences found by Williams and Guy. See A100047 for the connection with Chebyshev polynomials. (End)
a(n) = sqrt(2 + (9-4*sqrt(5))^(1+2*n) + (9+4*sqrt(5))^(1+2*n))/(2*sqrt(5)). - Gerry Martens, Jun 04 2015
MAPLE
seq(combinat:-fibonacci(6*n+3)/2, n=0..30); # Robert Israel, Sep 10 2014
MATHEMATICA
LinearRecurrence[{18, -1}, {1, 17}, 50] (* Sture Sjöstedt, Nov 29 2011 *)
Table[Fibonacci[6n+3]/2, {n, 0, 20}] (* Harvey P. Dale, Dec 17 2011 *)
CoefficientList[Series[(1-x)/(1-18*x+x^2), {x, 0, 50}], x] (* G. C. Greubel, Dec 19 2017 *)
PROG
(Haskell)
a007805 = (`div` 2) . a000045 . (* 3) . (+ 1) . (* 2)
-- Reinhard Zumkeller, Mar 26 2013
(PARI) a(n)=fibonacci(6*n+3)/2 \\ Edward Jiang, Sep 09 2014
(PARI) x='x+O('x^30); Vec((1-x)/(1-18*x+x^2)) \\ G. C. Greubel, Dec 19 2017
(Magma) I:=[1, 17]; [n le 2 select I[n] else 18*Self(n-1) - Self(n-2): n in [1..30]]; // G. C. Greubel, Dec 19 2017
CROSSREFS
Cf. A000045.
Row 18 of array A094954.
Row 2 of array A188647.
Cf. similar sequences listed in A238379.
KEYWORD
nonn,nice,easy
EXTENSIONS
Better description and more terms from Michael Somos
STATUS
approved
a(n) = Fibonacci(6*n).
+10
14
0, 8, 144, 2584, 46368, 832040, 14930352, 267914296, 4807526976, 86267571272, 1548008755920, 27777890035288, 498454011879264, 8944394323791464, 160500643816367088, 2880067194370816120, 51680708854858323072, 927372692193078999176, 16641027750620563662096
OFFSET
0,2
COMMENTS
All terms are divisible by 8. - Alonso del Arte, Jul 27 2013
Conjecture: For n >= 2, the terms of this sequence are exactly those Fibonacci numbers which are the sum of the three numbers of a Pythagorean triple (checked up to F(80)). - Felix Huber, Nov 03 2023
LINKS
Hacène Belbachir, Soumeya Merwa Tebtoub and László Németh, Ellipse Chains and Associated Sequences, J. Int. Seq., Vol. 23 (2020), Article 20.8.5.
FORMULA
a(n) = 18*a(n-1) - a(n-2) = 8*A049660(n). G.f.: 8*x/(1-18*x+x^2). - R. J. Mathar, Feb 16 2010
a(n) = A000045(A008588(n)). - Michel Marcus, Nov 08 2013
a(n) = ((-1+(9+4*sqrt(5))^(2*n)))/(sqrt(5)*(9+4*sqrt(5))^n). - Colin Barker, Jan 24 2016
a(n) = L(2n-1) * F(2n+1)^2 + L(2n+1) * F(2n-1)^2, where F(n) = A000045(n) and L(n) = A000032(n). - Diego Rattaggi, Nov 12 2020
a(n) = Fibonacci(3*n) * Lucas(3*n) = A000045(3*n) * A000032(3*n) = A014445(n) * A014448(n). - Amiram Eldar, Jan 11 2022
MATHEMATICA
Table[Fibonacci[6n], {n, 0, 30}]
LinearRecurrence[{18, -1}, {0, 8}, 30] (* Harvey P. Dale, Aug 15 2017 *)
PROG
(MuPAD) numlib::fibonacci(6*n) $ n = 0..25; // Zerinvary Lajos, May 09 2008
(Sage) [fibonacci(6*n) for n in range(0, 17)] # Zerinvary Lajos, May 15 2009
(Magma) [Fibonacci(6*n): n in [0..100]]; // Vincenzo Librandi, Apr 17 2011
(PARI) a(n)=fibonacci(6*n) \\ Charles R Greathouse IV, Sep 16 2015
(PARI) concat(0, Vec(8*x/(1-18*x+x^2) + O(x^20))) \\ Colin Barker, Jan 24 2016
KEYWORD
nonn,easy
AUTHOR
Artur Jasinski, Oct 28 2007
EXTENSIONS
Offset corrected by R. J. Mathar, Feb 16 2010
STATUS
approved
a(n) = Fibonacci(6n+4).
+10
12
3, 55, 987, 17711, 317811, 5702887, 102334155, 1836311903, 32951280099, 591286729879, 10610209857723, 190392490709135, 3416454622906707, 61305790721611591, 1100087778366101931, 19740274219868223167, 354224848179261915075, 6356306993006846248183
OFFSET
0,1
COMMENTS
Gives those numbers which are Fibonacci numbers in A103135.
Generally, for any sequence where a(0)= Fibonacci(p), a(1) = F(p+q) and Lucas(q)*a(1) +- a(0) = F(p+2q), then a(n) = L(q)*a(n-1) +- a(n-2) generates the following Fibonacci sequence: a(n) = F(q(n)+p). So for this sequence, a(n) = 18*a(n-1) - a(n-2) = F(6n+4): q=6, because 18 is the 6th Lucas number (L(0) = 2, L(1)=1); F(4)=3, F(10)=55 and F(16)=987 (F(0)=0 and F(1)=1). See Lucas sequence A000032. This is a special case where a(0) and a(1) are increasing Fibonacci numbers and Lucas(m)*a(1) +- a(0) is another Fibonacci. - Bob Selcoe, Jul 08 2013
a(n) = x + y where x and y are solutions to x^2 = 5*y^2 - 1. (See related sequences with formula below.) - Richard R. Forberg, Sep 05 2013
FORMULA
G.f.: (x+3)/(x^2-18*x+1).
a(n) = 18*a(n-1) - a(n-2) for n>1; a(0)=3, a(1)=55. - Philippe Deléham, Nov 17 2008
a(n) = A007805(n) + A075796(n), as follows from comment above. - Richard R. Forberg, Sep 05 2013
a(n) = ((15-7*sqrt(5)+(9+4*sqrt(5))^(2*n)*(15+7*sqrt(5))))/(10*(9+4*sqrt(5))^n). - Colin Barker, Jan 24 2016
a(n) = S(3*n+1, 3) = 3*S(n,18) + S(n-1,18), with the Chebyshev S polynomials (A049310), S(-1, x) = 0, and S(n, 18) = A049660(n+1). - Wolfdieter Lang, May 08 2023
MATHEMATICA
Table[Fibonacci[6n+4], {n, 0, 30}]
LinearRecurrence[{18, -1}, {3, 55}, 20] (* Harvey P. Dale, Mar 29 2023 *)
Table[ChebyshevU[3*n+1, 3/2], {n, 0, 20}] (* Vaclav Kotesovec, May 27 2023 *)
PROG
(Magma) [Fibonacci(6*n +4): n in [0..100]]; // Vincenzo Librandi, Apr 17 2011
(PARI) a(n)=fibonacci(6*n+4) \\ Charles R Greathouse IV, Feb 05 2013
KEYWORD
nonn,easy
AUTHOR
Creighton Dement, Jan 24 2005
EXTENSIONS
Edited by N. J. A. Sloane, Aug 10 2010
STATUS
approved
a(n) = Fibonacci(6n+5).
+10
12
5, 89, 1597, 28657, 514229, 9227465, 165580141, 2971215073, 53316291173, 956722026041, 17167680177565, 308061521170129, 5527939700884757, 99194853094755497, 1779979416004714189, 31940434634990099905, 573147844013817084101, 10284720757613717413913
OFFSET
0,1
FORMULA
G.f.: ( 5-x ) / ( 1-18*x+x^2 ). a(n) = 5*A049660(n+1)-A049660(n). - R. J. Mathar, Apr 17 2011
a(n) = A000045(A016969(n)). - Michel Marcus, Nov 08 2013
a(n) = ((25-11*sqrt(5)+(9+4*sqrt(5))^(2*n)*(25+11*sqrt(5))))/(10*(9+4*sqrt(5))^n). - Colin Barker, Jan 24 2016
a(n) = 5*S(n, 18) - S(n-1, 18), n >= 0, with the Chebyshev S-polynomials S(n-1, 18) = A049660(n). (See the g.f.) - Wolfdieter Lang, Jul 10 2018
From Peter Bala, Aug 11 2022: (Start)
Let n ** m = n*m + floor(phi*n)*floor(phi*m), where phi = (1 + sqrt(5))/2, denote the Porta-Stolarsky star product of the integers n and m (see A101858). Then a(n) = 5 ** 5 ** ... ** 5 (n+1 factors).
a(2*n+1) = a(n) ** a(n) = Fibonacci(12*n+11); a(3*n+2) = a(n) ** a(n) ** a(n) = Fibonacci(18*n+17) and so on. (End)
MATHEMATICA
Table[Fibonacci[6n+5], {n, 0, 30}]
Take[Fibonacci[Range[100]], {5, -1, 6}] (* Harvey P. Dale, Jun 18 2013 *)
PROG
(Magma) [Fibonacci(6*n +5): n in [0..100]]; // Vincenzo Librandi, Apr 17 2011
(PARI) a(n)=fibonacci(6*n+5) \\ Charles R Greathouse IV, Jun 11 2015
(PARI) Vec((5-x)/(1-18*x+x^2) + O(x^100)) \\ Altug Alkan, Jan 24 2016
KEYWORD
nonn,easy
AUTHOR
Artur Jasinski, Oct 28 2007
EXTENSIONS
Offset changed from 1 to 0 by Vincenzo Librandi, Apr 17 2011
STATUS
approved
a(n) = Fibonacci(6*n+1).
+10
11
1, 13, 233, 4181, 75025, 1346269, 24157817, 433494437, 7778742049, 139583862445, 2504730781961, 44945570212853, 806515533049393, 14472334024676221, 259695496911122585, 4660046610375530309, 83621143489848422977, 1500520536206896083277, 26925748508234281076009
OFFSET
0,2
COMMENTS
For positive n, a(n) equals (-1)^n times the permanent of the (6n)X(6n) tridiagonal matrix with ((-1)^(1/6))'s along the three central diagonals. - John M. Campbell, Jul 12 2011
a(n) = x + y where those two values are solutions to: x^2 = 5*y^2 + 1. (See related sequences with formula below). - Richard R. Forberg, Sep 05 2013
FORMULA
From R. J. Mathar, Apr 17 2011: (Start)
G.f.: ( 1-5*x ) / ( 1-18*x+x^2 ).
a(n) = A049660(n+1) - 5*A049660(n). (End)
a(n) = Fibonacci(3*n+1)^2 + Fibonacci(3*n)^2. - Gary Detlefs, Oct 12 2011
a(n) = 18*a(n-1) - a(n-2). - Richard R. Forberg, Sep 05 2013
a(n) = A060645(n) + A023039(n), as derives from comment above. - Richard R. Forberg, Sep 05 2013
a(n) = ((5-sqrt(5)+(5+sqrt(5))*(9+4*sqrt(5))^(2*n)))/(10*(9+4*sqrt(5))^n). - Colin Barker, Jan 24 2016
2*a(n) = Fibonacci(6*n) + Lucas(6*n). - Bruno Berselli, Oct 13 2017
a(n) = S(n, 18) - 5*S(n-1, 18), n >= 0, with the Chebyshev S-polynomials S(n-1, 18) = A049660(n). (See the g.f.) - Wolfdieter Lang, Jul 10 2018
MATHEMATICA
Table[Fibonacci[6n+1], {n, 0, 30}]
PROG
(Magma) [Fibonacci(6*n+1): n in [0..100]]; // Vincenzo Librandi, Apr 16 2011
(PARI) a(n)=fibonacci(6*n+1) \\ Charles R Greathouse IV, Jul 15 2011
(PARI) Vec((1-5*x)/(1-18*x+x^2) + O(x^100)) \\ Altug Alkan, Jan 24 2016
KEYWORD
nonn,easy
AUTHOR
Artur Jasinski, Oct 28 2007
EXTENSIONS
Offset changed to 0 by Vincenzo Librandi, Apr 16 2011
STATUS
approved
a(n) = Fibonacci(7n + 6).
+10
10
8, 233, 6765, 196418, 5702887, 165580141, 4807526976, 139583862445, 4052739537881, 117669030460994, 3416454622906707, 99194853094755497, 2880067194370816120, 83621143489848422977, 2427893228399975082453
OFFSET
0,1
FORMULA
G.f.: (-8-x) / (-1 + 29*x + x^2). - R. J. Mathar, Jul 04 2011
a(n) = A000045(A017053(n)). - Michel Marcus, Nov 08 2013
a(n) = 29*a(n-1) + a(n-2). - Wesley Ivan Hurt, Mar 15 2023
MATHEMATICA
Table[Fibonacci[7n+6], {n, 0, 30}]
LinearRecurrence[{29, 1}, {8, 233}, 20] (* Harvey P. Dale, Jul 21 2021 *)
PROG
(Magma) [Fibonacci(7*n +6): n in [0..100]]; // Vincenzo Librandi, Apr 17 2011
(PARI) a(n)=fibonacci(7*n+6) \\ Charles R Greathouse IV, Jun 11 2015
KEYWORD
nonn,easy
AUTHOR
Artur Jasinski, Oct 28 2007
EXTENSIONS
Offset changed from 1 to 0 by Vincenzo Librandi, Apr 17 2011
STATUS
approved
a(n) = Fibonacci(7n + 3).
+10
6
2, 55, 1597, 46368, 1346269, 39088169, 1134903170, 32951280099, 956722026041, 27777890035288, 806515533049393, 23416728348467685, 679891637638612258, 19740274219868223167, 573147844013817084101, 16641027750620563662096
OFFSET
0,1
FORMULA
From R. J. Mathar, Jul 04 2011: (Start)
G.f.: (-2+3*x) / (-1 + 29*x + x^2).
a(n) = 2*A049667(n+1) - 3*A049667(n). (End)
a(n) = A000045(A017017(n)). - Michel Marcus, Nov 07 2013
MATHEMATICA
Table[Fibonacci[7n+3], {n, 0, 30}]
PROG
(Magma) [Fibonacci(7*n+3): n in [0..100]]; // Vincenzo Librandi, Apr 16 2011
(PARI) a(n)=fibonacci(7*n+3) \\ Charles R Greathouse IV, Jun 11 2015
KEYWORD
nonn,easy
AUTHOR
Artur Jasinski, Oct 28 2007
EXTENSIONS
Offset changed to 0 by Vincenzo Librandi, Apr 16 2011
STATUS
approved
a(n) = Fibonacci(7n + 4).
+10
6
3, 89, 2584, 75025, 2178309, 63245986, 1836311903, 53316291173, 1548008755920, 44945570212853, 1304969544928657, 37889062373143906, 1100087778366101931, 31940434634990099905, 927372692193078999176, 26925748508234281076009
OFFSET
0,1
FORMULA
From R. J. Mathar, Jul 04 2011: (Start)
G.f.: (-3-2*x) / (-1 + 29*x + x^2).
a(n) = 2*A049667(n) + 3*A049667(n+1). (End)
a(n) = A000045(A017029(n)). - Michel Marcus, Nov 07 2013
MATHEMATICA
Table[Fibonacci[7n+4], {n, 0, 30}]
PROG
(Magma) [Fibonacci(7*n +4): n in [0..100]]; // Vincenzo Librandi, Apr 17 2011
(PARI) a(n)=fibonacci(7*n+4) \\ Charles R Greathouse IV, Jun 11 2015
KEYWORD
nonn,easy
AUTHOR
Artur Jasinski, Oct 28 2007
EXTENSIONS
Offset changed from 1 to 0 by Vincenzo Librandi, Apr 17 2011
STATUS
approved
a(n) = Fibonacci(5*n + 2).
+10
2
1, 13, 144, 1597, 17711, 196418, 2178309, 24157817, 267914296, 2971215073, 32951280099, 365435296162, 4052739537881, 44945570212853, 498454011879264, 5527939700884757, 61305790721611591, 679891637638612258
OFFSET
0,2
COMMENTS
The o.g.f. of {F(m*n + 2)}_{n>=0}, for m = 1, 2, ..., is
G(m,x) = (1 + F(m - 2)*x) / (1 - L(m)*x + (-1)^m*x^2), with F = A000045 and F(-1) = 1, and L = A000032. - Wolfdieter Lang, Feb 06 2023
FORMULA
From R. J. Mathar, Jul 04 2011: (Start)
G.f.: (-1-2*x) / (-1 + 11*x + x^2).
a(n) = 2*A049666(n) + A049666(n+1). (End)
a(n) = A000045(A016873(n)). - Michel Marcus, Nov 05 2013
MATHEMATICA
Table[Fibonacci[5n + 2], {n, 0, 30}]
LinearRecurrence[{11, 1}, {1, 13}, 20] (* Harvey P. Dale, May 05 2022 *)
PROG
(Magma) [Fibonacci(5*n+2): n in [0..50]]; // Vincenzo Librandi, Apr 20 2011
KEYWORD
nonn,easy
AUTHOR
Artur Jasinski, Oct 28 2007
STATUS
approved
a(n) = sqrt(5*b(n)^2 - 4), with b(n) = A134493(n) = Fibonacci(6*n+1), n >= 0.
+10
2
1, 29, 521, 9349, 167761, 3010349, 54018521, 969323029, 17393796001, 312119004989, 5600748293801, 100501350283429, 1803423556807921, 32361122672259149, 580696784543856761, 10420180999117162549, 186982561199565069121, 3355265920593054081629, 60207804009475408400201, 1080385206249964297121989
OFFSET
0,2
COMMENTS
This sequence gives all solutions of one of two classes of positive proper solutions a(n) = a1(n) of the Pell equation a(n)^2 - 5*b(n) = -4 with b(n) = b1(n) = Fibonacci(6*n+1) = A134493(n). These solutions are obtained from the fundamental positive solution [1, 1] (to be read as a column vector) by application of positive powers of the automorphic matrix A = matrix([9, 20], [4, 9]) with determinant +1.
The other class of positive proper solutions is obtained similarly from the fundamental solution [11,5] and is given by [a5(n), b5(n)], with a5(n) = A305316(n) and b5(n) = A134497(n) = F(6*n+5), with the Fibonacci numbers F = A000045.
The remaining positive solutions are improper and are obtained by application of the same matrix A on the fundamental improper solution [4, 2]. They are given by [a3(n), b3(n)], with a3(n) = 4*A049629(n) and b3(n) = A134495(n) = 2*A007805(n).
Via the Cayley-Hamilton theorem the powers of the automorphic matrix A are: A^n = matrix([S(n) - 9*S(n-1), 20*S(n-1)], [4*S(n-1), S(n) - 9*S(n-1)]) with the Chebyshev polynomials S(n-1) = S(n-1, x=18) = A049660(n), n >= 0.
This shows that ordered Markoff (Markov) triples [1, y, m], with 1 <= y <= m, have for m from the union of sets {m1(k)}_{k>=0} U {m5(k)}_{k>=0) U {m3(k)}_{k>=0)}, with mj(k) = F(6*k+j), for j = 1, 5, and 3, the unique solutions yj(k) = (3*F(6*k+j) - aj(k))/2 < mj(k), namely y1(k) = F(6*k-1) = A134497(k-1) with F(-1) = 1, y5(k) = F(6*k+3) = A134495(k) and y3(k) = F(6*k+1) = A134493. The solutions with the + sign are excluded because they are > mj(k). This trisection of the odd-indexed Fibonacci numbers as m numbers shows again the well known fact that each of them appears as largest member in a Markoff triple if the smallest member is x = 1. The positions of the odd-indexed Fibonacci numbers in the Markoff sequence A002559 are given in A158381. The conjecture in this case is that the odd-indexed Fibonacci numbers appear as largest numbers only in the ordered Markov triples with x = 1. See, e.g., the Aigner reference for the general Frobenius-Markoff conjecture.
Also Lucas numbers that are congruent to 1 mod 4. - Fred Patrick Doty, Aug 03 2020
REFERENCES
Aigner, Martin. Markov's theorem and 100 years of the uniqueness conjecture. A mathematical journey from irrational numbers to perfect matchings. Springer, 2013.
FORMULA
a(n) = sqrt(5*(F(6*n+1))^2 - 4), with F(6*n+1) = A134493(n), n >= 0.
a(n) = S(n, 18) + 11*S(n-1, 18), n >= 0, with the Chebyshev polynomials S(n, 18) = A049660(n+1) and S(-1, 18) = 0.
a(n) = 18*a(n-1) - a(n-2), n >= 1, with a(0)=1 and a(-1) = -11.
G.f.: (1 + 11*x)/(1 - 18*x + x^2).
a(n) = 2*sinh((6*n + 1)*arccsch(2)). - Peter Luschny, May 25 2022
EXAMPLE
The solutions of the first class of positive proper solutions [a1(n), b1(n)] of the Pell equation a^2 - 5*b^2 = -4 begin: [1, 1], [29, 13], [521, 233], [9349, 4181], [167761, 75025], [3010349, 1346269], [54018521, 24157817], ...
The solutions of the second class of positive proper solutions [a5(n), b5(n)] begin: [11, 5], [199, 89], [3571, 1597], [64079, 28657], [1149851, 514229], [20633239, 9227465], [370248451, 165580141], ...
The solutions of the class of improper positive solutions [a3(n), b3(n)] begin: [4, 2], [76, 34], [1364, 610], [24476, 10946], [439204, 196418], [7881196, 3524578], [141422324, 63245986], ...
MATHEMATICA
Select[LinearRecurrence[{1, 1}, {1, 3}, 115], Mod[#, 4] == 1 &]. (* Fred Patrick Doty, Aug 03 2020 *)
PROG
(PARI) x='x+O('x^99); Vec((1+11*x)/(1-18*x+x^2)) \\ Altug Alkan, Jul 11 2018
KEYWORD
nonn,easy
AUTHOR
Wolfdieter Lang, Jul 10 2018
STATUS
approved

Search completed in 0.010 seconds