A322699
Square array A(n,k), n >= 0, k >= 0, read by antidiagonals, where A(n,k) is 1/2 * (-1 + Sum_{j=0..k} binomial(2*k,2*j)*(n+1)^(k-j)*n^j).
Original entry on oeis.org
0, 0, 0, 0, 1, 0, 0, 8, 2, 0, 0, 49, 24, 3, 0, 0, 288, 242, 48, 4, 0, 0, 1681, 2400, 675, 80, 5, 0, 0, 9800, 23762, 9408, 1444, 120, 6, 0, 0, 57121, 235224, 131043, 25920, 2645, 168, 7, 0, 0, 332928, 2328482, 1825200, 465124, 58080, 4374, 224, 8, 0
Offset: 0
Square array begins:
0, 0, 0, 0, 0, 0, 0, ...
0, 1, 8, 49, 288, 1681, 9800, ...
0, 2, 24, 242, 2400, 23762, 235224, ...
0, 3, 48, 675, 9408, 131043, 1825200, ...
0, 4, 80, 1444, 25920, 465124, 8346320, ...
0, 5, 120, 2645, 58080, 1275125, 27994680, ...
0, 6, 168, 4374, 113568, 2948406, 76545000, ...
-
Unprotect[Power]; 0^0 := 1; Protect[Power]; Table[(-1 + Sum[Binomial[2 k, 2 j] (# + 1)^(k - j)*#^j, {j, 0, k}])/2 &[n - k], {n, 0, 9}, {k, n, 0, -1}] // Flatten (* Michael De Vlieger, Jan 01 2019 *)
nmax = 9; row[n_] := LinearRecurrence[{4n+3, -4n-3, 1}, {0, n, 4n(n+1)}, nmax+1]; T = Array[row, nmax+1, 0]; A[n_, k_] := T[[n+1, k+1]];
Table[A[n-k, k], {n, 0, nmax}, {k, n, 0, -1}] // Flatten (* Jean-François Alcover, Jan 06 2019 *)
-
def ncr(n, r)
return 1 if r == 0
(n - r + 1..n).inject(:*) / (1..r).inject(:*)
end
def A(k, n)
(0..n).map{|i| (0..k).inject(-1){|s, j| s + ncr(2 * k, 2 * j) * (i + 1) ** (k - j) * i ** j} / 2}
end
def A322699(n)
a = []
(0..n).each{|i| a << A(i, n - i)}
ary = []
(0..n).each{|i|
(0..i).each{|j|
ary << a[i - j][j]
}
}
ary
end
p A322699(10)
A221076
Continued fraction expansion of product_{n>=0} (1-sqrt(5)*[sqrt(5)-2]^{4n+3})/(1-sqrt(5)*[sqrt(5)-2]^{4n+1}).
Original entry on oeis.org
2, 16, 1, 32, 1, 320, 1, 608, 1, 5776, 1, 10944, 1, 103680, 1, 196416, 1, 1860496, 1, 3524576, 1, 33385280, 1, 63245984, 1, 599074576, 1, 1134903168, 1, 10749957120, 1, 20365011072, 1, 192900153616, 1, 365435296160, 1
Offset: 0
Product {n >= 0} {1 - sqrt(5)*(sqrt(5) - 2)^(4*n+3)}/{1 - sqrt(5)*(sqrt(5) - 2)^(4*n+1)} = 2.05892 54859 32105 82744 ...
= 2 + 1/(16 + 1/(1 + 1/(32 + 1/(1 + 1/(320 + 1/(1 + 1/(608 + ...))))))).
Since (sqrt(5) - 2)^3 = 17*sqrt(5) - 38 we have the following simple continued fraction expansion:
product {n >= 0} {1 - sqrt(5)*(17*sqrt(5) - 38)^(4*n+3)}/{1 - sqrt(5)*(17*sqrt(5) - 38)^(4*n+1)} = 1.03030 31892 29728 52318 ... = 1 + 1/(32 + 1/(1 + 1/(5776 + 1/(1 + 1/(196416 + 1/(1 + 1/(33385280 + ...))))))).
- Peter Bala, Some simple continued fraction expansions for an infinite product, Part 1
- Index entries for linear recurrences with constant coefficients, signature (0,1,0,18,0,-18,0,-1,0,1).
-
LinearRecurrence[{0,1,0,18,0,-18,0,-1,0,1},{2,16,1,32,1,320,1,608,1,5776,1},40] (* or *) Join[{2},Riffle[LinearRecurrence[{1,18,-18,-1,1},{16,32,320,608,5776},20],1]] (* Harvey P. Dale, Jun 05 2023 *)
Original entry on oeis.org
0, 10, 3240, 1043290, 335936160, 108170400250, 34830532944360, 11215323437683690, 3611299316401203840, 1162827164557749952810, 374426735688279083601000, 120564246064461307169569210, 38821312806020852629517684640, 12500342159292650085397524884890
Offset: 0
- G. C. Greubel, Table of n, a(n) for n = 0..395
- Russ Euler and Jawad Sadek, Elementary Problems and Solutions, The Fibonacci Quarterly, Vol. 41, No. 5 (2003), pp. 466-471.
- Russ Euler and Jawad Sadek, Elementary Problems and Solutions, The Fibonacci Quarterly, Vol. 42, No. 3 (2004), pp. 277-282.
- Index entries for linear recurrences with constant coefficients, signature (323,-323,1).
-
List([0..20], n-> 5*Fibonacci(6*n)^2/32); # G. C. Greubel, Feb 03 2019
-
[5*Fibonacci(6*n)^2/32: n in [0..20]]; // G. C. Greubel, Feb 03 2019
-
Table[(5/32) Fibonacci[6 n]^2, {n, 0, 13}] (* Michael De Vlieger, Sep 16 2017 *)
LinearRecurrence[{323,-323,1},{0,10,3240},20] (* Harvey P. Dale, Aug 31 2024 *)
-
a(n) = (5/32)*fibonacci(6*n)^2
-
[5*fibonacci(6*n)^2/32 for n in (0..20)] # G. C. Greubel, Feb 03 2019
A174906
a(n) is the index of the first triangular number T_i exceeding T_n such that the product of T_i*T_n is a perfect square.
Original entry on oeis.org
24, 48, 80, 120, 168, 224, 49, 360, 440, 528, 624, 728, 840, 960, 1088, 1224, 1368, 1520, 1680, 1848, 2024, 2208, 242, 2600, 2808, 3024, 3248, 3480, 3720, 3968, 4224, 4488, 4760, 5040, 5328, 5624, 5928, 6240, 6560, 6888, 7224, 7568, 7920, 8280, 8648
Offset: 2
- Clifford A. Pickover, The Loom of God, Tapestries of Mathematics and Mysticism, Sterling, NY, 2009, page 33.
-
tri[n_] := n (n + 1)/2; f[n_] := Block[{k = n + 1, t = tri@n}, While[ !IntegerQ@ Sqrt[ t*tri@k], k++ ]; k]; Table[ f@n, {n, 2, 46}]
Showing 1-4 of 4 results.
Comments