# Greetings from The On-Line Encyclopedia of Integer Sequences! http://oeis.org/ Search: id:a073817 Showing 1-1 of 1 %I A073817 #126 Mar 24 2024 04:22:41 %S A073817 4,1,3,7,15,26,51,99,191,367,708,1365,2631,5071,9775,18842,36319, %T A073817 70007,134943,260111,501380,966441,1862875,3590807,6921503,13341626, %U A073817 25716811,49570747,95550687,184179871,355018116,684319421,1319068095,2542585503 %N A073817 Tetranacci numbers with different initial conditions: a(n) = a(n-1) + a(n-2) + a(n-3) + a(n-4) starting with a(0)=4, a(1)=1, a(2)=3, a(3)=7. %C A073817 These tetranacci numbers follow the same pattern as Lucas and generalized tribonacci(A001644) numbers: Binet's formula is a(n) = r1^n + r2^n + r3^n + r4^n, with r1, r2, r3, r4 roots of the characteristic polynomial. %C A073817 For n >= 4, a(n) is the number of cyclic sequences consisting of n zeros and ones that do not contain four consecutive ones provided the positions of the zeros and ones are fixed on a circle. This is proved in Charalambides (1991) and Zhang and Hadjicostas (2015). For example, a(4)=15 because only the sequences 1110, 1101, 1011, 0111, 0011, 0101, 1001, 1010, 0110, 1100, 0001, 0010, 0100, 1000, 0000 avoid four consecutive ones on a circle. (For n=1,2,3 the statement is still true provided we allow the sequence to wrap around itself on a circle. For example, a(2)=3 because only the sequences 00, 01, 10 avoid four consecutive ones when wrapped around on a circle.) - _Petros Hadjicostas_, Dec 18 2016 %H A073817 Vincenzo Librandi, Table of n, a(n) for n = 0..1000 %H A073817 Martin Burtscher, Igor Szczyrba, and Rafał Szczyrba, Analytic Representations of the n-anacci Constants and Generalizations Thereof, Journal of Integer Sequences, Vol. 18 (2015), Article 15.4.5. %H A073817 C. A. Charalambides, Lucas numbers and polynomials of order k and the length of the longest circular success run, The Fibonacci Quarterly, 29 (1991), 290-297. %H A073817 Spiros D. Dafnis, Andreas N. Philippou, and Ioannis E. Livieris, An Alternating Sum of Fibonacci and Lucas Numbers of Order k, Mathematics (2020) Vol. 9, 1487. %H A073817 Petros Hadjicostas, Cyclic Compositions of a Positive Integer with Parts Avoiding an Arithmetic Sequence, Journal of Integer Sequences, 19 (2016), #16.8.2. %H A073817 Tony D. Noe and Jonathan Vos Post, Primes in Fibonacci n-step and Lucas n-step Sequences, J. of Integer Sequences, Vol. 8 (2005), Article 05.4.4 %H A073817 J. L. Ramírez and V. F. Sirvent, A Generalization of the k-Bonacci Sequence from Riordan Arrays, The Electronic Journal of Combinatorics, 22(1) (2015), #P1.38. %H A073817 Yüksel Soykan, Gaussian Generalized Tetranacci Numbers, arXiv:1902.03936 [math.NT], 2019. %H A073817 Yüksel Soykan, Tetranacci and Tetranacci-Lucas Quaternions, arXiv:1902.05868 [math.RA], 2019. %H A073817 Yüksel Soykan, Summation Formulas for Generalized Tetranacci Numbers, Asian Journal of Advanced Research and Reports (2019) Vol. 7, No. 2, Article No. AJARR.52434, 1-12. %H A073817 Yüksel Soykan, Properties of Generalized (r, s, t, u)-Numbers, Earthline J. of Math. Sci. (2021) Vol. 5, No. 2, 297-327. %H A073817 Kai Wang, Identities, generating functions and Binet formula for generalized k-nacci sequences, 2020. %H A073817 Kai Wang, Identities for generalized enneanacci numbers, Generalized Fibonacci Sequences (2020). %H A073817 Eric Weisstein's World of Mathematics, Fibonacci n-Step Number. %H A073817 A. V. Zarelua, On Matrix Analogs of Fermat's Little Theorem, Mathematical Notes, vol. 79, no. 6, 2006, pp. 783-796. Translated from Matematicheskie Zametki, vol. 79, no. 6, 2006, pp. 840-855. %H A073817 L. Zhang and P. Hadjicostas, On sequences of independent Bernoulli trials avoiding the pattern '11..1', Math. Scientist, 40 (2015), 89-96. %H A073817 Index entries for linear recurrences with constant coefficients, signature (1,1,1,1). %F A073817 G.f.: (4 - 3*x - 2*x^2 - x^3)/(1 - x - x^2 - x^3 - x^4). %F A073817 a(n) = 2*a(n-1) - a(n-5), with a(0)=4, a(1)=1, a(2)=3, a(3)=7, a(4)=15. - _Vincenzo Librandi_, Dec 20 2010 %F A073817 a(n) = A000078(n+2) + 2*A000078(n+1) + 3*A000078(n) + 4*A000078(n-1). - _Advika Srivastava_, Aug 22 2019 %F A073817 a(n) = 8*a(n-3) - a(n-5) - 2*a(n-6) - 4*a(n-7). - _Advika Srivastava_, Aug 25 2019 %F A073817 a(n) = Trace(M^n), where M is the 4 X 4 matrix [0, 0, 0, 1; 1, 0, 0, 1; 0, 1, 0, 1; 0, 0, 1, 1], the companion matrix to the monic polynomial x^4 - x^3 - x^2 - x - 1. It follows that the sequence satisfies the Gauss congruences: a(n*p^r) == a(n*p^(r-1)) (mod p^r) for positive integers n and r and all primes p. See Zarelua. - _Peter Bala_, Dec 31 2022 %t A073817 a[0]=4; a[1]=1; a[2]=3; a[3]=7; a[4]=15; a[n_]:= 2*a[n-1] -a[n-5]; Array[a, 34, 0] %t A073817 CoefficientList[Series[(4-3x-2x^2-x^3)/(1-x-x^2-x^3-x^4), {x, 0, 40}], x] %t A073817 LinearRecurrence[{1,1,1,1},{4,1,3,7},40] (* _Harvey P. Dale_, Jun 01 2015 *) %o A073817 (PARI) Vec((4-3*x-2*x^2-x^3)/(1-x-x^2-x^3-x^4) + O(x^40)) \\ _Michel Marcus_, Jan 29 2016 %o A073817 (Magma) I:=[4,1,3,7]; [n le 4 select I[n] else Self(n-1) +Self(n-2) +Self(n-3) +Self(n-4): n in [1..40]]; // _G. C. Greubel_, Feb 19 2019 %o A073817 (Sage) ((4-3*x-2*x^2-x^3)/(1-x-x^2-x^3-x^4)).series(x, 40).coefficients(x, sparse=False) # _G. C. Greubel_, Feb 19 2019 %o A073817 (GAP) a:=[4,1,3,7];; for n in [5..40] do a[n]:=a[n-1]+a[n-2]+a[n-3] +a[n-4]; od; a; # _G. C. Greubel_, Feb 19 2019 %Y A073817 Cf. A000078, A001630, A001644, A000032, A106295 (Pisano periods). Two other versions: A001648, A074081. %K A073817 nonn,easy %O A073817 0,1 %A A073817 Mario Catalani (mario.catalani(AT)unito.it), Aug 12 2002 %E A073817 Typo in definition corrected by _Vincenzo Librandi_, Dec 20 2010 # Content is available under The OEIS End-User License Agreement: http://oeis.org/LICENSE