A101386 Expansion of g.f.: (5 - 3*x)/(1 - 6*x + x^2).
5, 27, 157, 915, 5333, 31083, 181165, 1055907, 6154277, 35869755, 209064253, 1218515763, 7102030325, 41393666187, 241259966797, 1406166134595, 8195736840773, 47768254910043, 278413792619485, 1622714500806867, 9457873212221717, 55124524772523435, 321289275422918893
Offset: 0
References
- T. Nagell, Introduction to Number Theory, Chelsea Publishing Company, 1964, Theorem 109, pp. 207-208 with Theorem 104, pp. 197-198.
Links
- Colin Barker, Table of n, a(n) for n = 0..1000
- Yurii S. Bystryk, Vitalii L. Denysenko, and Volodymyr I. Ostryk, Lune and Lens Sequences, ResearchGate preprint, 2024. See pp. 55, 56.
- M. A. Gruber, Artemas Martin, A. H. Bell, J. H. Drummond, A. H. Holmes and H. C. Wilkes, Problem 47, Amer. Math. Monthly, 4 (1897), 25-28.
- Tanya Khovanova, Recursive Sequences
- Morris Newman, Daniel Shanks, and H. C. Williams, Simple groups of square order and an interesting sequence of primes, Acta Arith., 38 (1980/1981) 129-140. MR82b:20022.
- Eric Weisstein's World of Mathematics, NSW Number.
- Index entries for linear recurrences with constant coefficients, signature (6,-1).
Crossrefs
Programs
-
Magma
R
:=PowerSeriesRing(Integers(), 30); Coefficients(R!((5 - 3*x)/(1-6*x+x^2))); // G. C. Greubel, Jul 26 2018 -
Maple
A101386:= (n) -> simplify(5*ChebyshevU(n, 3) - 3*ChebyshevU(n-1, 3)); seq( A101386(n), n = 0..30); # G. C. Greubel, Mar 17 2020
-
Mathematica
CoefficientList[ Series[(5-3x)/(1-6x+x^2), {x,0,30}], x] (* Robert G. Wilson v, Jan 29 2005 *) LinearRecurrence[{6,-1},{5,27},30] (* Harvey P. Dale, Apr 23 2016 *)
-
PARI
Vec((5-3*x)/(1-6*x+x^2) + O(x^30)) \\ Colin Barker, Feb 05 2015
-
SageMath
[5*chebyshev_U(n,3) -3*chebyshev_U(n-1,3) for n in (0..30)] # G. C. Greubel, Mar 17 2020
Formula
a(n+1) - a(n) = 2*A054490(n+1).
a(n) = 6*a(n-1) - a(n-2), a(0)=5, a(1)=27. - Philippe Deléham, Nov 17 2008
From Al Hakanson (hawkuu(AT)gmail.com), Aug 17 2009: (Start)
a(n) = ((5+sqrt(18))*(3 + sqrt(8))^n + (5-sqrt(18))*(3 - sqrt(8))^n)/2.
Third binomial transform of A164737. (End)
a(n) = rational part of z(n), with z(n) = (5+3*sqrt(2))*(3+2*sqrt(2))^n, n >= 0, the general positive solutions of the second class of proper solutions. See the preceding formula. - Wolfdieter Lang, Feb 05 2015
a(n) = Pell(2*n+2) + 3*Pell(2*n+1), where Pell(n) = A000129(n). - G. C. Greubel, Apr 17 2020
E.g.f.: exp(3*x)*(5*cosh(2*sqrt(2)*x) + 3*sqrt(2)*sinh(2*sqrt(2)*x)). - Stefano Spezia, Mar 16 2024
Extensions
More terms from Robert G. Wilson v, Jan 29 2005
Comments