A077028 The rascal triangle, read by rows: T(n,k) (n >= 0, 0 <= k <= n) = k(n-k) + 1.
1, 1, 1, 1, 2, 1, 1, 3, 3, 1, 1, 4, 5, 4, 1, 1, 5, 7, 7, 5, 1, 1, 6, 9, 10, 9, 6, 1, 1, 7, 11, 13, 13, 11, 7, 1, 1, 8, 13, 16, 17, 16, 13, 8, 1, 1, 9, 15, 19, 21, 21, 19, 15, 9, 1, 1, 10, 17, 22, 25, 26, 25, 22, 17, 10, 1, 1, 11, 19, 25, 29, 31, 31, 29, 25, 19, 11, 1, 1, 12, 21, 28, 33, 36, 37, 36, 33, 28, 21, 12, 1
Offset: 0
Examples
Third diagonal (1,3,5,7,...) consists of the positive integers congruent to 1 mod 2. The triangle T(n, k) begins: n\k 0 1 2 3 4 5 6 7 8 9 10 ... 0: 1 1: 1 1 2: 1 2 1 3: 1 3 3 1 4: 1 4 5 4 1 5: 1 5 7 7 5 1 6: 1 6 9 10 9 6 1 7: 1 7 11 13 13 11 7 1 8: 1 8 13 16 17 16 13 8 1 9: 1 9 15 19 21 21 19 15 9 1 10: 1 10 17 22 25 26 25 22 17 10 1 ... reformatted. - _Wolfdieter Lang_, Dec 19 2017 As a square array read by antidiagonals, the first rows are: 1, 1, 1, 1, 1, 1, ... 1, 2, 3, 4, 5, 6, ... 1, 3, 5, 7, 9, 11, ... 1, 4, 7, 10, 13, 16, ... 1, 5, 9, 13, 17, 21, ...
Links
- Michael De Vlieger, Table of n, a(n) for n = 0..11475 (rows 0 <= n <= 150, flattened).
- A. Anggoro, E. Liu and A. Tulloch, The Rascal Triangle, College Math. J., Vol. 41, No. 5, Nov. 2010, pp. 393-395.
- D. C. Fielder and C. O. Alford, An investigation of sequences derived from Hoggatt Sums and Hoggatt Triangles, Application of Fibonacci Numbers, 3 (1990) 77-88. Proceedings of 'The Third Annual Conference on Fibonacci Numbers and Their Applications,' Pisa, Italy, July 25-29, 1988. (Annotated scanned copy)
- Julian Fleron, Tackling Rascals’ Triangle - How Inquiry Challenges What We Know and How We Know It, Discovering the Art of Mathematics, December 15 2015.
- Amelia Gibbs and Brian K. Miceli, Two Combinatorial Interpretations of Rascal Numbers, arXiv:2405.11045 [math.CO], 2024.
- Jena Gregory, Brandt Kronholm, and Jacob White, Iterated rascal triangles, Aequationes mathematicae, 2023.
- Jena Gregory, Iterated rascal triangles, Theses and Dissertations. 1050., The University of Texas Rio Grande Valley, 2022.
- Zachary Hoelscher and Eyvindur Ari Palsson, Counting Restricted Partitions of Integers into Fractions: Symmetry and Modes of the Generating Function and a Connection to omega(t), arXiv:2011.14502 [math.NT], 2020.
- Brian Hopkins, Editorial: Anonymity and Youth, The College Mathematics Journal, 45 (Number 2, 2014), 82. - From _N. J. A. Sloane_, Apr 05 2014
- Philip K. Hotchkiss, Generalized Rascal Triangles, arXiv:1907.11159 [math.HO], 2019.
- Philip K. Hotchkiss, Generalized Rascal Triangles, Journal of Integer Sequences, Vol. 23, 2020.
- Philip K. Hotchkiss, Student Inquiry and the Rascal Triangle, arXiv:1907.07749 [math.HO], 2019.
- Iva Kodrnja and Helena Koncul, Number of Polynomials Vanishing on a Basis of S_m(Gamma_0(N)), arXiv:2405.10747 [math.NT], 2024. See p. 10, also Glasnik Matematički, (2024) Vol. 59, No. 79, 313-325. See p. 320.
- L. McHugh, CMJ Article Shows Collaboration Is Not Limited by Geography ... or Age, MAA Focus (Magazine), Vol. 31, No. 1, 2011, p. 13.
- Franck Ramaharo, A generating polynomial for the two-bridge knot with Conway's notation C(n,r), arXiv:1902.08989 [math.CO], 2019. See p. 8.
Crossrefs
Programs
-
Maple
A077028 := proc(n,k) if n <0 or k<0 or k > n then 0; else k*(n-k)+1 ; end if; end proc: # R. J. Mathar, Jul 28 2016
-
Mathematica
t[n_, k_] := k (n - k) + 1; t[0, 0] = 1; Table[ t[n, k], {n, 0, 12}, {k, 0, n}] // Flatten (* Robert G. Wilson v, Jul 06 2012 *)
-
PARI
{T(n, k) = if( k<0 || k>n, 0, k * (n - k) + 1)}; /* Michael Somos, Mar 20 2011 */
Formula
As a square array read by antidiagonals, a(n, k) = 1 + n*k. a(n, k) = a(n-1, k) + k. Row n has g.f. (1+(n-1)x)/(1-x)^2, n >= 0. - Paul Barry, Feb 22 2003
Still thinking of square arrays. Let f:N->Z and g:N->Z be given and I an integer, then define a(n, k) = I + f(n)*g(k). Then a(n, k)*a(n-1, k-1) = a(n-1, k)*a(n, k-1) + I*(f(n) - f(n-1))*(g(k) - g(k-1)) for suitable n and k. S= (E*W + 1)/N. arises with I = 1, and f = g = id. - Terry Lindgren, Apr 10 2011
Using the above: Having just read J. Fleron's nice article in Discovering the Art of Mathematics on the rascal triangle, it is neat to note and straightforward to show that when I = 1, a(n, k) + a(n-1, k-1) = a(n-1, k) + a(n, k-1) + (f(n) - f(n-1))*(g(k) - g(k-1)), so with I = 1, and f = g = id, we have S+N = E+W + 1, as his students discovered. - Terry Lindgren, Nov 28 2016
T(n, k) = A128139(n-1, k-1). - Gary W. Adamson, Jul 02 2012
O.g.f. (1 - x*(1 + t) + 2*t*x^2)/((1 - x)^2*(1 - t*x)^2) = 1 + (1 + t)*x + (1 + 2*t + t^2)*x^2 + .... Cf. A105851. - Peter Bala, Jul 26 2015
T(n, k) = 0 if n < k, T(n, 0) = 1, T(n,n) = 1, for n >= 0, and T(n, k) = (T(n-1, k-1)*T(n-1, k) + 1)/(T(n-2, k-1)) for 0 < k < n. See the first comment referring to the triangle with its apex in the middle. - Wolfdieter Lang, Dec 19 2017
E.g.f. as square array: exp(x+y)*(1 + x*y). - Stefano Spezia, Aug 10 2025
Extensions
Better definition based on Murthy's comment of Jul 15 2005 and the Anggoro et al. paper. - N. J. A. Sloane, Mar 05 2011
Comments