login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A309555 Triangle read by rows: T(n,k) = 3 + k*(n-k) for n >= 0, 0 <= k <= n. 5

%I #36 Nov 10 2021 20:40:28

%S 3,3,3,3,4,3,3,5,5,3,3,6,7,6,3,3,7,9,9,7,3,3,8,11,12,11,8,3,3,9,13,15,

%T 15,13,9,3,3,10,15,18,19,18,15,10,3,3,11,17,21,23,23,21,17,11,3,3,12,

%U 19,24,27,28,27,24,19,12,3,3,13,21,27,31,33,33,31,27,21,13,3,3,14,23,30,35,38,39,38,35,30,23,14,3

%N Triangle read by rows: T(n,k) = 3 + k*(n-k) for n >= 0, 0 <= k <= n.

%C The rascal triangle (A077028) can be generated by either of the rules South = (East*West+1)/North or South = East+West+1-North; this number triangle can be generated by either of the rules South = (East*West+3)/North or South = East+West+1-North.

%C It is more suggestive to observe that N*S-E*W = 1 or 3 in the two cases, and (N+S)-(E+W) = 1 in both cases. In fact "3" in the present definition can be replaced by any integer c, and we get a triangle of integers with N*S-E*W = c and (N+S)-(E+W) = 1. I say "suggestive", because these rules also arise in frieze patterns. - _N. J. A. Sloane_, Aug 28 2019

%H Philip K Hotchkiss, <a href="https://arxiv.org/abs/1907.11159">Generalized Rascal Triangles</a>, arXiv:1907.11159 [math.HO], 2019.

%F By rows: a(n,k) = 3 + k(n-k), n >= 0, 0 <= k <= n.

%F By antidiagonals: T(r,k) = 3 + r*k, r,k >= 0.

%e For the row n=3: a(3,0)=3, a(3,1)=5, a(3,2)=5, a(3,3)=3, ...

%e For the antidiagonal r=2: T(2,0)=3, T(2,1)=5, T(2,3)=7, T(2,4)=9, ...

%e The triangle begins:

%e ..............3..

%e ............3..3..

%e ..........3..4..3..

%e ........3..5...5..3..

%e ......3..6...7...6..3..

%e ....3..7...9...9..7..3..

%e ..3..8..11..12..11..8..3..

%e 3..9..13..15..15..13..9..3.

%e ...

%p T:= proc(n, k)

%p if n<0 or k<0 or k>n then

%p 0;

%p else

%p k*(n-k)+3 ;

%p end if;

%p end:

%p seq(seq(T(n,k), k=0..n), n=0..12);

%t T[n,k]:=k(n-k)+3;T[0,0] = 3; Table[T[n,k],{n,0,12},{k,0,n}]//Flatten

%Y Cf. A077028, A309555, A309557.

%K nonn,tabl

%O 0,1

%A _Philip K Hotchkiss_, Aug 07 2019

%E Missing a(50)=23 inserted by _Georg Fischer_, Nov 08 2021

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 22:17 EDT 2024. Contains 371964 sequences. (Running on oeis4.)