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!)
A321163 Square array A(n,k), n >= 1, k >= 1, read by antidiagonals, where A(n,k) is the sum of distinct products Product_{j=1..k} b_j with 1 <= b_j<= n. 4
1, 1, 3, 1, 7, 6, 1, 15, 25, 10, 1, 31, 90, 61, 15, 1, 63, 301, 310, 136, 21, 1, 127, 966, 1441, 990, 244, 28, 1, 255, 3025, 6370, 6391, 2220, 440, 36, 1, 511, 9330, 27301, 38325, 17731, 5300, 680, 45, 1, 1023, 28501, 114670, 218926, 130851, 54831, 9660, 1022, 55 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,3
LINKS
EXAMPLE
In case of (n,k) = (3,2):
| 1 2 3
--+--------
1 | 1, 2, 3
2 | 2, 4, 6
3 | 3, 6, 9
Distinct products are 1,2,3,4,6,9. So A(3,2) = 1+2+3+4+6+9 = 25.
Square array begins:
1, 1, 1, 1, 1, 1, ...
3, 7, 15, 31, 63, 127, ...
6, 25, 90, 301, 966, 3025, ...
10, 61, 310, 1441, 6370, 27301, ...
15, 136, 990, 6391, 38325, 218926, ...
21, 244, 2220, 17731, 130851, 916714, ...
28, 440, 5300, 54831, 514668, 4519390, ...
36, 680, 9660, 116991, 1280916, 13092430, ...
45, 1022, 17130, 242091, 3070935, 36184072, ...
55, 1472, 28670, 467391, 6807045, 91765822, ...
MATHEMATICA
A[n_, k_] := Module[{b, bb}, bb = Array[b, k]; Table[Times @@ bb, Evaluate[Sequence @@ ({#, n}& /@ bb)]] // Flatten // Union // Total];
Table[A[n-k+1, k], {n, 1, 10}, {k, n, 1, -1}] // Flatten (* Jean-François Alcover, Nov 25 2020 *)
CROSSREFS
Columns 1-3 give A000217, A321165, A323334.
Rows 1-2 give A000012, A000225(n+1).
Main diagonal gives A321164.
Cf. A322967.
Row 3 gives A000392(n+4). - Fred Daniel Kline, Jan 11 2019
Sequence in context: A110441 A111806 A372118 * A054458 A110168 A323663
KEYWORD
nonn,tabl
AUTHOR
Seiichi Manyama, Jan 10 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 07:16 EDT 2024. Contains 371905 sequences. (Running on oeis4.)