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!)
A307662 Triangle T(i,j=1..i) read by rows which contain the naturally ordered divisors-or-ones of the row number i. 2

%I #75 May 01 2019 10:26:13

%S 1,1,2,1,1,3,1,2,1,4,1,1,1,1,5,1,2,3,1,1,6,1,1,1,1,1,1,7,1,2,1,4,1,1,

%T 1,8,1,1,3,1,1,1,1,1,9,1,2,1,1,5,1,1,1,1,10,1,1,1,1,1,1,1,1,1,1,11,1,

%U 2,3,4,1,6,1,1,1,1,1,12,1,1,1,1,1,1,1,1,1,1,1,1,13

%N Triangle T(i,j=1..i) read by rows which contain the naturally ordered divisors-or-ones of the row number i.

%C Replace 0 with 1 in A127093. - _Omar E. Pol_, Apr 21 2019

%H I. V. Serov, <a href="/A307662/b307662.txt">Rows n = 1..131 of triangle, flattened</a>

%F For j=1..floor(i/2), T(i,j)=T(i-j,j).

%F For j=floor(i/2)+1..i-1, T(i,j)=1.

%F T(i,i) = i.

%F Let i = A002024(n) and j = A002260(n):

%F a(n) = a((i-j-1)*(i-j)/2+j) if j=1..floor(i/2).

%F a(n) = 1 if j=floor(i/2)+1..i-1.

%F a(n) = i if j=i.

%F T(i,j) = a(n).

%e Triangle begins:

%e 1,

%e 1, 2,

%e 1, 1, 3,

%e 1, 2, 1, 4,

%e 1, 1, 1, 1, 5,

%e 1, 2, 3, 1, 1, 6,

%e 1, 1, 1, 1, 1, 1, 7,

%e 1, 2, 1, 4, 1, 1, 1, 8,

%e 1, 1, 3, 1, 1, 1, 1, 1, 9,

%e 1, 2, 1, 1, 5, 1, 1, 1, 1,10,

%e 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,11,

%e 1, 2, 3, 4, 1, 6, 1, 1, 1, 1, 1,12,

%e ...

%t Table[Map[If[Mod[n, #] == 0, #, 1] &, Range@ n], {n, 13}] // Flatten (* _Michael De Vlieger_, Apr 23 2019 *)

%o (PARI) row(n) = vector(n, k, if ((n % k) == 0, k, 1)); \\ _Michel Marcus_, Apr 21 2019

%Y Cf. A100995, A127093, A307641, A027750, A002024, A002260.

%K nonn,tabl

%O 1,3

%A _I. V. Serov_, Apr 20 2019

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 May 1 09:02 EDT 2024. Contains 372163 sequences. (Running on oeis4.)