cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-7 of 7 results.

A337655 a(1)=1; thereafter, a(n) is the smallest number such that both the addition and multiplication tables for (a(1),...,a(n)) contain n*(n+1)/2 different entries (the maximum possible).

Original entry on oeis.org

1, 2, 5, 7, 15, 22, 31, 50, 68, 90, 101, 124, 163, 188, 215, 253, 322, 358, 455, 486, 527, 631, 702, 780, 838, 920, 1030, 1062, 1197, 1289, 1420, 1500, 1689, 1765, 1886, 2114, 2353, 2410, 2570, 2686, 2857, 3063, 3207, 3477, 3616, 3845, 3951, 4150, 4480, 4595, 4746, 5030, 5286, 5698, 5999, 6497, 6624, 6938, 7219, 7661, 7838, 8469, 8665, 9198, 9351, 9667, 9966
Offset: 1

Views

Author

Jean-Paul Delahaye, Sep 30 2020

Keywords

Comments

If one specifies that not only are there n(n+1)/2 distinct numbers in the addition and multiplication tables, but that all n(n+1) numbers are distinct, then the sequence is A337946 - David A. Corneth, Oct 02 2020

Crossrefs

See A337659 and A337660 (for the addition table), and A337661 and A337662 (for the multiplication table).
For similar sequences that focus just on the addition or multiplication tables, see A005282 and A066720.
Cf. also A337946.

Programs

  • Mathematica
    terms=67;a[1]=b[1]=1;a1=b1={1};Do[k=a[n-1]+1;While[a2=Union@Join[{2k},Array[a@#+k&,n-1]];b2=Union@Join[{k^2},Array[b@#*k&,n-1]];Intersection[a2,a1]!={}||Intersection[b2,b1]!={},k++];a[n]=b[n]=k;a1=Union[a1,a2];b1=Union[b1,b2],{n,2,terms}];Array[a,terms] (* Giorgos Kalogeropoulos, Nov 15 2021 *)

A337659 Triangular array read by rows: T(n,k) = A337655(n) + A337655(k), for 1 <= k <= n.

Original entry on oeis.org

2, 3, 4, 6, 7, 10, 8, 9, 12, 14, 16, 17, 20, 22, 30, 23, 24, 27, 29, 37, 44, 32, 33, 36, 38, 46, 53, 62, 51, 52, 55, 57, 65, 72, 81, 100, 69, 70, 73, 75, 83, 90, 99, 118, 136, 91, 92, 95, 97, 105, 112, 121, 140, 158, 180, 102, 103, 106, 108, 116, 123, 132, 151, 169, 191, 202
Offset: 1

Views

Author

N. J. A. Sloane, Oct 03 2020

Keywords

Comments

This is the lower triangular part of the addition table from A337655, read by rows.
Sequences A337659, A337660, A337661, A337662 arise from the addition and multiplication tables in A337655, each one described in two ways. Perhaps someone could help by creating the analogous sets of four sequences for the addition and multiplication tables in the closely related sequences A337656 and A337946.

Examples

			The addition table from A337655 begins:
   2,  3,  6,  8,  16,  23,  32,  51,  69,  91, ...
   3,  4,  7,  9,  17,  24,  33,  52,  70,  92, ...
   6,  7, 10, 12,  20,  27,  36,  55,  73,  95, ...
   8,  9, 12, 14,  22,  29,  38,  57,  75,  97, ...
  16, 17, 20, 22,  30,  37,  46,  65,  83, 105, ...
  23, 24, 27, 29,  37,  44,  53,  72,  90, 112, ...
  32, 33, 36, 38,  46,  53,  62,  81,  99, 121, ...
  51, 52, 55, 57,  65,  72,  81, 100, 118, 140, ...
  69, 70, 73, 75,  83,  90,  99, 118, 136, 158, ...
  91, 92, 95, 97, 105, 112, 121, 140, 158, 180, ...
  ...
		

Crossrefs

A337661 Triangular array read by rows: T(n,k) = A337655(n) * A337655(k), for 1 <= k <= n.

Original entry on oeis.org

1, 2, 4, 5, 10, 25, 7, 14, 35, 49, 15, 30, 75, 105, 225, 22, 44, 110, 154, 330, 484, 31, 62, 155, 217, 465, 682, 961, 50, 100, 250, 350, 750, 1100, 1550, 2500, 68, 136, 340, 476, 1020, 1496, 2108, 3400, 4624, 90, 180, 450, 630, 1350, 1980, 2790, 4500, 6120, 8100
Offset: 1

Views

Author

N. J. A. Sloane, Oct 03 2020

Keywords

Comments

This is the lower triangular part of the multiplication table from A337655, read by rows.

Examples

			The multiplication table from A337655 begins:
   1,   2,   5,   7,   15,   22,   31,   50,   68,   90, ...
   2,   4,  10,  14,   30,   44,   62,  100,  136,  180, ...
   5,  10,  25,  35,   75,  110,  155,  250,  340,  450, ...
   7,  14,  35,  49,  105,  154,  217,  350,  476,  630, ...
  15,  30,  75, 105,  225,  330,  465,  750, 1020, 1350, ...
  22,  44, 110, 154,  330,  484,  682, 1100, 1496, 1980, ...
  31,  62, 155, 217,  465,  682,  961, 1550, 2108, 2790, ...
  50, 100, 250, 350,  750, 1100, 1550, 2500, 3400, 4500, ...
  68, 136, 340, 476, 1020, 1496, 2108, 3400, 4624, 6120, ...
  90, 180, 450, 630, 1350, 1980, 2790, 4500, 6120, 8100, ...
  ...
		

Crossrefs

A337660 Addition table from A337655, read by antidiagonals.

Original entry on oeis.org

2, 3, 3, 6, 4, 6, 8, 7, 7, 8, 16, 9, 10, 9, 16, 23, 17, 12, 12, 17, 23, 32, 24, 20, 14, 20, 24, 32, 51, 33, 27, 22, 22, 27, 33, 51, 69, 52, 36, 29, 30, 29, 36, 52, 69, 91, 70, 55, 38, 37, 37, 38, 55, 70, 91, 102, 92, 73, 57, 46, 44, 46, 57, 73, 92, 102, 125, 103, 95, 75, 65, 53, 53, 65, 75, 95, 103, 125
Offset: 1

Views

Author

N. J. A. Sloane, Oct 04 2020

Keywords

Examples

			The addition table from A337655 begins:
   2,  3,  6,  8,  16,  23,  32,  51,  69,  91, ...
   3,  4,  7,  9,  17,  24,  33,  52,  70,  92, ...
   6,  7, 10, 12,  20,  27,  36,  55,  73,  95, ...
   8,  9, 12, 14,  22,  29,  38,  57,  75,  97, ...
  16, 17, 20, 22,  30,  37,  46,  65,  83, 105, ...
  23, 24, 27, 29,  37,  44,  53,  72,  90, 112, ...
  32, 33, 36, 38,  46,  53,  62,  81,  99, 121, ...
  51, 52, 55, 57,  65,  72,  81, 100, 118, 140, ...
  69, 70, 73, 75,  83,  90,  99, 118, 136, 158, ...
  91, 92, 95, 97, 105, 112, 121, 140, 158, 180, ...
  ...
		

Crossrefs

A338017 Multiplication table of A338012, read by antidiagonals.

Original entry on oeis.org

0, 0, 0, 0, 9, 0, 0, 12, 12, 0, 0, 30, 16, 30, 0, 0, 54, 40, 40, 54, 0, 0, 69, 72, 100, 72, 69, 0, 0, 102, 92, 180, 180, 92, 102, 0, 0, 165, 136, 230, 324, 230, 136, 165, 0, 0, 201, 220, 340, 414, 414, 340, 220, 201, 0, 0, 279, 268, 550, 612, 529, 612, 550, 268, 279, 0
Offset: 1

Views

Author

Peter Kagey, Oct 06 2020

Keywords

Examples

			Multiplication table begins:
   * | 0   3   4  10   18   23   34   55   67
-----+---------------------------------------
   0 | 0   0   0   0    0    0    0    0    0
   3 | 0   9  12  30   54   69  102  165  201
   4 | 0  12  16  40   72   92  136  220  268
  10 | 0  30  40 100  180  230  340  550  670
  18 | 0  54  72 180  324  414  612  990 1206
  23 | 0  69  92 230  414  529  782 1265 1541
  34 | 0 102 136 340  612  782 1156 1870 2278
  55 | 0 165 220 550  990 1265 1870 3025 3685
  67 | 0 201 268 670 1206 1541 2278 3685 4489
		

Crossrefs

Cf. A338012, A338015 (addition table), A338016 (by rows).

A337975 Multiplication table from A337946, read by antidiagonals.

Original entry on oeis.org

1, 3, 3, 7, 9, 7, 12, 21, 21, 12, 22, 36, 49, 36, 22, 30, 66, 84, 84, 66, 30, 47, 90, 154, 144, 154, 90, 47, 61, 141, 210, 264, 264, 210, 141, 61, 85, 183, 329, 360, 484, 360, 329, 183, 85, 113, 255, 427, 564, 660, 660, 564, 427, 255, 113, 126, 339, 595, 732, 1034, 900, 1034, 732, 595, 339, 126
Offset: 1

Views

Author

Peter Kagey, Oct 05 2020

Keywords

Examples

			Multiplication table for A337946 begins:
  *  |  1   3   7   12   22   30   47   61   85
-----+-----------------------------------------
   1 |  1   3   7   12   22   30   47   61   85
   3 |  3   9  21   36   66   90  141  183  255
   7 |  7  21  49   84  154  210  329  427  595
  12 | 12  36  84  144  264  360  564  732 1020
  22 | 22  66 154  264  484  660 1034 1342 1870
  30 | 30  90 210  360  660  900 1410 1830 2550
  47 | 47 141 329  564 1034 1410 2209 2867 3995
  61 | 61 183 427  732 1342 1830 2867 3721 5185
  85 | 85 255 595 1020 1870 2550 3995 5185 7225
		

Crossrefs

Cf. A337973 (addition), A337974 (read by rows).

A338034 Multiplication table of A337656, read by antidiagonals.

Original entry on oeis.org

0, 0, 0, 0, 1, 0, 0, 3, 3, 0, 0, 7, 9, 7, 0, 0, 12, 21, 21, 12, 0, 0, 20, 36, 49, 36, 20, 0, 0, 30, 60, 84, 84, 60, 30, 0, 0, 44, 90, 140, 144, 140, 90, 44, 0, 0, 65, 132, 210, 240, 240, 210, 132, 65, 0, 0, 91, 195, 308, 360, 400, 360, 308, 195, 91, 0
Offset: 1

Views

Author

Peter Kagey, Oct 07 2020

Keywords

Examples

			Multiplication table begins:
   * | 0  1   3   7  12   20   30   44   65
-----+-------------------------------------
   0 | 0  0   0   0   0    0    0    0    0
   1 | 0  1   3   7  12   20   30   44   65
   3 | 0  3   9  21  36   60   90  132  195
   7 | 0  7  21  49  84  140  210  308  455
  12 | 0 12  36  84 144  240  360  528  780
  20 | 0 20  60 140 240  400  600  880 1300
  30 | 0 30  90 210 360  600  900 1320 1950
  44 | 0 44 132 308 528  880 1320 1936 2860
  65 | 0 65 195 455 780 1300 1950 2860 4225
		

Crossrefs

Cf. A337656, A337657, A338032 (addition table), A338033 (by rows).
Showing 1-7 of 7 results.