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!)
A361748 Triangle T(n, k) of distinct positive integers, n > 0, k = 1..n, read by rows and filled in the greedy way such that T(n, k) is a multiple of T(n, 1). 4
1, 2, 4, 3, 6, 9, 5, 10, 15, 20, 7, 14, 21, 28, 35, 8, 16, 24, 32, 40, 48, 11, 22, 33, 44, 55, 66, 77, 12, 36, 60, 72, 84, 96, 108, 120, 13, 26, 39, 52, 65, 78, 91, 104, 117, 17, 34, 51, 68, 85, 102, 119, 136, 153, 170, 18, 54, 90, 126, 144, 162, 180, 198, 216, 234, 252 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
This sequence is a variant of A360371.
As a flat sequence, this is a permutation of the positive integers with inverse A361939.
LINKS
Michael De Vlieger, Table of n, a(n) for n = 1..11325 (rows n = 1..150)
Rémy Sigrist, PARI program
FORMULA
T(n, k) = k * T(n, 1) when T(n, 1) is a prime number.
EXAMPLE
Triangle T(n, k) begins:
1;
2, 4;
3, 6, 9;
5, 10, 15, 20;
7, 14, 21, 28, 35;
8, 16, 24, 32, 40, 48;
11, 22, 33, 44, 55, 66, 77;
12, 36, 60, 72, 84, 96, 108, 120;
13, 26, 39, 52, 65, 78, 91, 104, 117;
17, 34, 51, 68, 85, 102, 119, 136, 153, 170;
...
MATHEMATICA
nn = 11; c[_] = False; T[1, 1] = 1; c[1] = True; u = 2; Do[If[j == 1, k = u; m = 1, While[c[k m], m++]]; Set[{T[i, j], c[#]}, {#, True}] &[k m]; If[k == u, While[c[u], u++]], {i, 2, nn}, {j, i}]; Table[T[i, j], {i, nn}, {j, i}] // Flatten (* Michael De Vlieger, Apr 01 2023 *)
PROG
(PARI) See Links section.
CROSSREFS
Cf. A360371, A361939 (inverse).
Sequence in context: A246278 A359299 A363473 * A371236 A246366 A271865
KEYWORD
nonn,tabl,easy
AUTHOR
Rémy Sigrist, Mar 30 2023
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 19 12:06 EDT 2024. Contains 371792 sequences. (Running on oeis4.)