A238536
A fourth-order linear divisibility sequence related to the Fibonacci numbers: a(n) = (1/2)*Fibonacci(3*n)*Lucas(n).
Original entry on oeis.org
1, 12, 68, 504, 3355, 23256, 158717, 1089648, 7463884, 51170460, 350695511, 2403786672, 16475579353, 112925875764, 774003961940, 5305106018016, 36361727272627, 249227013404808, 1708227291909269, 11708364225400920, 80250321774226396, 550043889533755332, 3770056901455017263
Offset: 1
- S. Koshkin, Non-classical linear divisibility sequences ..., Fib. Q., 57 (No. 1, 2019), 68-80.
- G. C. Greubel, Table of n, a(n) for n = 1..1185
- Peter Bala, A family of linear divisibility sequences of order four
- E. L. Roettger and H. C. Williams, Appearance of Primes in Fourth-Order Odd Divisibility Sequences, J. Int. Seq., Vol. 24 (2021), Article 21.7.5.
- Wikipedia, Divisibility sequence
- Wikipedia, Lucas sequence
- Index entries for linear recurrences with constant coefficients, signature (4,19,4,-1).
-
I:=[12, 68, 504, 3355]; [1] cat [n le 4 select I[n] else 4*Self(n-1) + 19*Self(n-2) + 4*Self(n-3) - Self(n-4): n in [1..30]]; // G. C. Greubel, Dec 25 2017
-
with(combinat): lucas:= n->fibonacci(n+1)+ fibonacci(n-1):
seq(1/2*lucas(n)*fibonacci(3*n), n = 1..24);
-
Table[Fibonacci(3*n)*Lucas(n)/2, {n,1,30}] (* or *) Join[{1}, LinearRecurrence[{4,19,4,-1}, {12, 68, 504, 3355}, 30]] (* G. C. Greubel, Dec 25 2017 *)
-
a(n)=([0,1,0,0; 0,0,1,0; 0,0,0,1; -1,4,19,4]^(n-1)*[1;12;68;504])[1,1] \\ Charles R Greathouse IV, Oct 07 2016
A238538
A fourth-order linear divisibility sequence: a(n) = (2^n + 1)*(2^(3*n) - 1)/ ( (2 + 1)*(2^3 - 1) ).
Original entry on oeis.org
1, 15, 219, 3315, 51491, 811395, 12882499, 205321155, 3278747331, 52408827075, 838132189379, 13406842675395, 214483303960771, 3431523432591555, 54902699475185859, 878429788032676035, 14054769379960303811, 224875452250864496835, 3598000373385828511939
Offset: 1
- Michael De Vlieger, Table of n, a(n) for n = 1..831
- Peter Bala, A family of linear divisibility sequences of order four
- E. L. Roettger and H. C. Williams, Appearance of Primes in Fourth-Order Odd Divisibility Sequences, J. Int. Seq., Vol. 24 (2021), Article 21.7.5.
- Wikipedia, Divisibility sequence
- Wikipedia, Lucas Sequence
- 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
- Index entries for linear recurrences with constant coefficients, signature (27,-202,432,-256).
-
seq(1/21*(2^n + 1)*(2^(3*n) - 1), n = 1..20);
-
LinearRecurrence[{27,-202,432,-256},{1,15,219,3315},20] (* Harvey P. Dale, Jul 04 2019 *)
A238540
A fourth-order linear divisibility sequence: a(n) := (3^n + 1)*(3^(3*n) - 1)/( (3 + 1)*(3^3 - 1)).
Original entry on oeis.org
1, 70, 5299, 419020, 33664741, 2719393810, 220069738519, 17820217484440, 1443290970139081, 116902609136432350, 9469004435040169339, 766986472802959676260, 62125826363286791503021, 5032189831214900660779690, 407607319514701058318401759, 33016191346720726553176114480
Offset: 1
- Peter Bala, A family of linear divisibility sequences of order four
- Wikipedia, Divisibility sequence
- 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
- Index entries for linear recurrences with constant coefficients, signature (112,-2622,9072,-6561).
-
#A238540
seq(1/104*(3^n + 1)*(3^(3*n) - 1), n = 1..20);
-
LinearRecurrence[{112, -2622, 9072, -6561}, {1, 70, 5299, 419020}, 16] (* Jean-François Alcover, Nov 14 2019 *)
A238541
A fourth-order linear divisibility sequence: a(n) := A(n)/A(1) where A(n) := ( (3^n + 2^n)*(3^(3*n) - 2^(3*n)) ).
Original entry on oeis.org
1, 91, 7063, 538447, 41441455, 3231753343, 254851186927, 20265345051679, 1621012954550479, 130194036583465855, 10485834936321976111, 846117830539227426271, 68360837263665964839823, 5527792975131721247371327, 447241733557623755497669615
Offset: 1
-
#A238541
seq(1/95*(3^n + 2^n)*(3^(3*n) - 2^(2*n)), n = 1..20);
-
LinearRecurrence[{175,-10158,226800,-1679616},{1,91,7063,538447},20] (* Harvey P. Dale, Apr 12 2018 *)
A238539
A fourth-order linear divisibility sequence: a(n) := (1/9)*(2^n + (-1)^n)*(2^(3*n) - (-1)^n).
Original entry on oeis.org
1, 35, 399, 7735, 112871, 1893255, 29593159, 479082695, 7620584391, 122287263175, 1953732901319, 31282632909255, 500338874618311, 8006888009380295, 128098480026087879, 2049669505409577415, 32793961486615474631, 524709388585350492615, 8395302178969583120839
Offset: 1
- Peter Bala, A family of linear divisibility sequences of order four
- Wikipedia, Divisibility sequence"
- 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
- Index entries for linear recurrences with constant coefficients, signature (7,138,112,-256).
Showing 1-5 of 5 results.
Comments