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!)
A141069 List of different composites in Pascal-like triangles with index of asymmetry y = 3 and index of obliqueness z = 0 or z = 1. 12
4, 8, 16, 35, 60, 72, 116, 148, 224, 303, 432, 308, 618, 833, 636, 1257, 1606, 1313, 2550, 3096, 1314, 2709, 5160, 5968, 2715, 5584, 10418, 11504, 5609, 11499, 20991, 22175, 23655, 42215, 42744, 11588, 23934, 48607, 82392, 84752, 23941, 99763, 158816, 169880 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
For the Pascal-like triangle with index of asymmetry y = 3 and index of obliqueness z = 0, which is read by rows, we have G(n, 0) = G(n+1, n+1) = 1, G(n+2, n+1) = 2, G(n+3, n+1) = 4, G(n+4, n+1) = 8, and G(n+5, k) = G(n+1, k-1) + G(n+1, k) + G(n+2, k) + G(n+3, k) + G(n+4, k) for n >= 0 and k = 1..(n+1). (This is array A140996.)
For the Pascal-like triangle with index of asymmetry y = 3 and index of obliqueness z = 1, which is read by rows, we have G(n, n) = G(n+1, 0) = 1, G(n+2, 1) = 2, G(n+3, 2) = 4, G(n+4, 3) = 8, and G(n+5, k) = G(n+1, k-3) + G(n+1, k-4) + G(n+2, k-3) + G(n+3, k-2) + G(n+4, k-1) for n >= 0 and k = 4..(n+4). (This is array A140995.)
From Petros Hadjicostas, Jun 13 2019: (Start)
The arrays A140995 and A140996, which are described above, are mirror images of one another.
To make the current sequence uniquely defined, we follow the suggestion of R. J. Mathar for sequence A141064. For each row of array A140996, the composites not appearing in earlier rows are collected, sorted, and added to the sequence. We get exactly the same sequence by working with array A140995 instead.
Finally, we explain the meaning of the double recurrence in the attached photograph. It concerns the connection between Stepan's triangles and Pascal's triangles. The creator of the stone slab uses the notation G_n^k to denote the double array G(n, k), where 0 <= k <= n.
On the stone slab, the letter s is used to denote the "index of asymmetry" (denoted by y here) and the letter e is used to denote the 0-1 "index of obliqueness" (denoted by z here). Thus, as described above, there are two kinds of Stepan-Pascal triangles depending on whether e is equal to 0 or 1. (The case s = 0 corresponds to Pascal's triangle A007318.)
If e = 0, the value of k goes from 1 to n + 1, whereas if e = 1 the value of k goes from s + 1 to n + s + 1.
The "index of asymmetry" s = y can take any (fixed) integer value from 0 to infinity. The fixed value of s = y determines the number of initial conditions: G(n + x + 1, n - e*n + e*x - e + 1) = 2^x for x = 0, 1, ..., s. In addition, there is one more initial condition: G(n, e*n) = 1.
The "index of asymmetry" s = y also determines the order of the recurrence (which is probably s + 2 = y + 2): G(n + s + 2, k) = G(n + 1, k - e*s + e - 1) + Sum_{1 <= m <= s + 1} G(n + m, k - e*s + m*e - 2*e).
(End)
LINKS
EXAMPLE
Pascal-like triangle with y = 3 and z = 0 (i.e., A140996) begins as follows:
1, so no composites.
1 1, so no composites.
1 2 1, so no composites.
1 4 2 1, so a(1) = 4.
1 8 4 2 1, so a(2) = 8.
1 16 8 4 2 1, so a(3) = 16.
1 31 17 8 4 2 1, so no new composites.
1 60 35 17 8 4 2 1, so a(4) = 35 and a(5) = 60.
1 116 72 35 17 8 4 2 1, so a(6) = 72 and a(7) = 116.
1 224 148 72 35 17 8 4 2 1, so a(8) = 148 and a(9) = 224.
1 432 303 149 72 35 17 8 4 2 1, so a(10) = 303 and a(11) = 432.
... [edited by Petros Hadjicostas, Jun 13 2019]
MAPLE
# This is a modification of R. J. Mathar's program from sequence A141031 (for the case y = 4 and z = 0).
# Definition of sequence A140996 (y = 3 and z = 0):
A140996 := proc(n, k) option remember; if k < 0 or n < k then 0; elif k = 0 or k = n then 1; elif k = n - 1 then 2; elif k = n - 2 then 4; elif k = n - 3 then 8; else procname(n - 1, k) + procname(n - 2, k) + procname(n - 3, k) + procname(n - 4, k) + procname(n - 4, k - 1); end if; end proc;
# Definition of current sequence:
A141069 := proc(nmax) local a, b, n, k, new; a := []; for n from 0 to nmax do b := []; for k from 0 to n do new := A140996(n, k); if not (new = 1 or isprime(new) or new in a or new in b) then b := [op(b), new]; end if; end do; a := [op(a), op(sort(b))]; end do; RETURN(a); end proc;
# Generation of current sequence until row n = 30:
A141069(30);
# If one wishes the composites to be sorted, then replace RETURN(a) with RETURN(sort(a)) in the above Maple code. In such a case, however, the output may not necessarily be uniquely defined (because it changes with the value of n). - Petros Hadjicostas, Jun 15 2019
CROSSREFS
Sequence in context: A215346 A214035 A040014 * A306621 A144687 A278377
KEYWORD
nonn
AUTHOR
EXTENSIONS
Partially edited by N. J. A. Sloane, Jul 18 2008
More terms from Petros Hadjicostas, Jun 13 2019
STATUS
approved

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 23 03:30 EDT 2024. Contains 371906 sequences. (Running on oeis4.)