A283681 Unique sequence with a(1)=1, a(2)=2, representing an array read by antidiagonals in which the i-th row is this sequence itself multiplied by i.
1, 2, 2, 2, 4, 3, 2, 4, 6, 4, 4, 4, 6, 8, 5, 3, 8, 6, 8, 10, 6, 2, 6, 12, 8, 10, 12, 7, 4, 4, 9, 16, 10, 12, 14, 8, 6, 8, 6, 12, 20, 12, 14, 16, 9, 4, 12, 12, 8, 15, 24, 14, 16, 18, 10, 4, 8, 18, 16, 10, 18, 28, 16, 18, 20, 11, 4, 8, 12, 24, 20, 12, 21, 32, 18, 20, 22, 12, 6, 8
Offset: 1
Examples
The sequence begins: 1, 2, 2, 2, 4, 3, 2, 4, 6, 4, ... It represents a rectangular array read by downward antidiagonals. The first row of the array is this very sequence itself. The second row is this sequence multiplied by 2, and so on: 1 2 2 2 4 3 ... 2 4 4 4 8 ... 3 6 6 6 ... 4 8 8 ... 5 10 ... 6 ... ...
Links
- Ivan Neretin, Table of n, a(n) for n = 1..26796
Crossrefs
Programs
-
Mathematica
Nest[Flatten@Table[#[[n - i]]*i, {n, Length[#] + 1}, {i, n - 1}] &, {1, 2}, 4]
Formula
a((n^2+n)/2)=n.
Comments