1, 0, 1, -1, 1, 1, 0, 1, 2, 1, 1, 1, 7, 3, 1, 0, 1, 26, 17, 4, 1, -1, 1, 97, 99, 31, 5, 1, 0, 1, 362, 577, 244, 49, 6, 1, 1, 1, 1351, 3363, 1921, 485, 71, 7, 1, 0, 1, 5042, 19601, 15124, 4801, 846, 97, 8, 1, -1, 1, 18817, 114243, 119071, 47525, 10081, 1351, 127, 9, 1, 0, 1, 70226, 665857, 937444, 470449, 120126, 18817, 2024, 161
Offset: 0
As a number triangle, rows begin:
{1},
{0,1},
{-1,1,1},
{0,1,2,1},
...
As a square array, rows begin
1, 1, 1, 1, 1, ...
0, 1, 2, 3, 4, ...
-1, 1, 7, 17, 31, ...
0, 1, 26, 99, 244, ...
1, 1, 97, 577, 1921, ...
A322790
Square array A(n,k), n >= 0, k >= 0, read by antidiagonals, where A(n,k) is Sum_{j=0..k} binomial(2*k,2*j)*(n+1)^(k-j)*n^j.
Original entry on oeis.org
1, 1, 1, 1, 3, 1, 1, 17, 5, 1, 1, 99, 49, 7, 1, 1, 577, 485, 97, 9, 1, 1, 3363, 4801, 1351, 161, 11, 1, 1, 19601, 47525, 18817, 2889, 241, 13, 1, 1, 114243, 470449, 262087, 51841, 5291, 337, 15, 1, 1, 665857, 4656965, 3650401, 930249, 116161, 8749, 449, 17, 1
Offset: 0
Square array begins:
1, 1, 1, 1, 1, 1, 1, ...
1, 3, 17, 99, 577, 3363, 19601, ...
1, 5, 49, 485, 4801, 47525, 470449, ...
1, 7, 97, 1351, 18817, 262087, 3650401, ...
1, 9, 161, 2889, 51841, 930249, 16692641, ...
1, 11, 241, 5291, 116161, 2550251, 55989361, ...
1, 13, 337, 8749, 227137, 5896813, 153090001, ...
-
A[0, k_] := 1; A[n_, k_] := Sum[Binomial[2 k, 2 j]*(n + 1)^(k - j)*n^j, {j, 0, k}]; Table[A[n - k, k], {n, 0, 10}, {k, n, 0, -1}] // Flatten (* Amiram Eldar, Dec 26 2018 *)
A094347
a(n) = 14*a(n-1) - a(n-2); a(0) = a(1) = 2.
Original entry on oeis.org
2, 2, 26, 362, 5042, 70226, 978122, 13623482, 189750626, 2642885282, 36810643322, 512706121226, 7141075053842, 99462344632562, 1385331749802026, 19295182152595802, 268747218386539202, 3743165875258953026
Offset: 0
- Michael De Vlieger, Table of n, a(n) for n = 0..874
- Christian Aebi and Grant Cairns, Less than Equable Triangles on the Eisenstein lattice, arXiv:2312.10866 [math.CO], 2023.
- R. K. Guy, Letter to N. J. A. Sloane concerning A001075, A011943, A094347 [Scanned and annotated letter, included with permission]
- Tanya Khovanova, Recursive Sequences
- Index entries for linear recurrences with constant coefficients, signature (14,-1).
-
LinearRecurrence[{14,-1},{2,2},40] (* or *) CoefficientList[ Series[2(1-13x)/(1-14x+x^2),{x,0,39}],x] (* Harvey P. Dale, Apr 23 2011 *)
-
(a[0]:2, a[1]:2, a[n] := 14*a[n - 1] - a[n-2], makelist(a[n], n, 0, 50)); /* Franck Maminirina Ramaharo, Nov 12 2018 */
A141041
a(n) = ((3 + 2*sqrt(3))^n + (3 - 2*sqrt(3))^n)/2.
Original entry on oeis.org
1, 3, 21, 135, 873, 5643, 36477, 235791, 1524177, 9852435, 63687141, 411680151, 2661142329, 17201894427, 111194793549, 718774444575, 4646231048097, 30033709622307, 194140950878133, 1254946834135719, 8112103857448713
Offset: 0
-
[n le 2 select 3^(n-1) else 6*Self(n-1) +3*Self(n-2): n in [1..31]]; // G. C. Greubel, Oct 10 2022
-
a[n_]= ((3+2*Sqrt[3])^n + (3-2*Sqrt[3])^n)/2; Table[FullSimplify[a[n]], {n,0,30}]
LinearRecurrence[{6,3},{1,3},30] (* Harvey P. Dale, Aug 25 2014 *)
-
A141041 = BinaryRecurrenceSequence(6,3,1,3)
[A141041(n) for n in range(31)] # G. C. Greubel, Oct 10 2022
A011944
a(n) = 14*a(n-1) - a(n-2) with a(0) = 0, a(1) = 2.
Original entry on oeis.org
0, 2, 28, 390, 5432, 75658, 1053780, 14677262, 204427888, 2847313170, 39657956492, 552364077718, 7693439131560, 107155783764122, 1492487533566148, 20787669686161950, 289534888072701152
Offset: 0
-
LinearRecurrence[{14,-1},{0,2},20] (* Harvey P. Dale, Oct 17 2019 *)
Table[2 ChebyshevU[-1 + n, 7], {n, 0, 18}] (* Herbert Kociemba, Jun 05 2022 *)
Original entry on oeis.org
1, -3, 13, -48, 181, -675, 2521, -9408, 35113, -131043, 489061, -1825200, 6811741, -25421763, 94875313, -354079488, 1321442641, -4931691075, 18405321661, -68689595568, 256353060613, -956722646883, 3570537526921, -13325427460800, 49731172316281
Offset: 0
-
/* By definition: */
m:=15; R:=PowerSeriesRing(Integers(), m);
A001570:=Coefficients(R!((1-x)/(1-14*x+x^2)));
A007654:=Coefficients(R!(-3*x^2*(1+x)/(-1+x)/(1-14*x+x^2)));
&cat[[A001570[i],-A007654[i]]: i in [1..m-2]]; // Bruno Berselli, Feb 05 2013
-
seriestolist(series((x^2+x+1)/((1-x)*(x+1)*(x^2+4*x+1)), x=0,25));
-
LinearRecurrence[{-4,0,4,1},{1,-3,13,-48},30] (* Harvey P. Dale, Jun 15 2018 *)
A144536
Denominators of continued fraction convergents to sqrt(3)/2.
Original entry on oeis.org
1, 1, 7, 15, 97, 209, 1351, 2911, 18817, 40545, 262087, 564719, 3650401, 7865521, 50843527, 109552575, 708158977, 1525870529, 9863382151, 21252634831, 137379191137, 296011017105, 1913445293767, 4122901604639, 26650854921601, 57424611447841, 371198523608647
Offset: 0
0, 1, 6/7, 13/15, 84/97, 181/209, 1170/1351, 2521/2911, 16296/18817, 35113/40545, ...
-
with(numtheory); Digits:=200: cf:=convert(evalf(sqrt(3)/2,confrac); [seq(nthconver(cf,i), i=0..100)];
-
Denominator[Convergents [Sqrt[3]/2, 30]] (* Vincenzo Librandi, Feb 01 2014 *)
LinearRecurrence[{0,14,0,-1},{1,1,7,15},30] (* Harvey P. Dale, Sep 15 2017 *)
A207832
Numbers x such that 20*x^2 + 1 is a perfect square.
Original entry on oeis.org
0, 2, 36, 646, 11592, 208010, 3732588, 66978574, 1201881744, 21566892818, 387002188980, 6944472508822, 124613502969816, 2236098580947866, 40125160954091772, 720016798592704030
Offset: 0
- Bruno Berselli, Table of n, a(n) for n = 0..500
- 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.
- Index entries for linear recurrences with constant coefficients, signature (18,-1).
-
m:=16; R:=PowerSeriesRing(Integers(), m); [0] cat Coefficients(R!(2*x/(1-18*x+x^2))); // Bruno Berselli, Jun 19 2019
-
readlib(issqr):for x from 1 to 720016798592704030 do if issqr(20*x^2+1) then print(x) fi od;
-
LinearRecurrence[{18, -1}, {0, 2}, 16] (* Bruno Berselli, Feb 21 2012 *)
Table[2 ChebyshevU[-1 + n, 9], {n, 0, 16}] (* Herbert Kociemba, Jun 05 2022 *)
-
makelist(expand(((2+sqrt(5))^(2*n)-(2-sqrt(5))^(2*n))/(4*sqrt(5))), n, 0, 15); /* Bruno Berselli, Jun 19 2019 */
Comments