OFFSET
1,2
COMMENTS
LINKS
Michael De Vlieger, Table of n, a(n) for n = 1..10598 (rows n = 1..640, flattened)
Michael De Vlieger, Logarithmic scatterplot of log_10 a(n), n = 1..10^4.
Michael De Vlieger, Image showing 8000 rows of this sequence (715118 HCNs), representing each term with a black pixel, extracted from the Flammenkamp dataset of 779674 HCNs. Note, the HCNs shown are not the smallest; some HCNs are clipped away from the bottom of this image where uncertainty in the completion of rows is expected.
FORMULA
EXAMPLE
Row 1 contains the products of A301414(1) = 1 and each of P(0) = 1, P(1) = 2, and P(2) = 6.
Row 2 contains the products of A301414(2) = 2 and each of P(1), P(2), and P(3) = 30.
Row 3 contains the products of A301414(3) = 4 and each of P(2) and P(3), etc.
n\j | 0 1 2 3 4 5
----------------------------------
1 | 1, 2, 6
2 | 4, 12, 60
3 | 24, 120
4 | 36, 180, 1260
5 | 48, 240, 1680
6 | 360, 2520, 27720
7 | 720, 5040, 720720, etc.
In this sequence T(n,k) we have the following:
1: 1, 2, 6;
2: 4, 12, 60;
3: 24, 120;
4: 36, 180, 1260;
5: 48, 240, 1680;
6: 360, 2520, 27720;
7: 720, 5040, 720720; etc.
MATHEMATICA
nn = 8; rad[x_] := rad[x] = Times @@ FactorInteger[x][[All, 1]];
MapIndexed[Set[P[First[#2]], #1] &, FoldList[Times, Prime@ Range[nn + 1]]];
a2182 = Import["https://oeis.org/A002182/b002182.txt", "Data"][[All, -1]];
TakeWhile[
SplitBy[SortBy[
Map[{#1/#2, PrimeNu[#2], #1} & @@ {#, rad[#]} &,
TakeWhile[a2182, rad[#] <= P[nn] &]], #[[1 ;; 2]] &,
LexicographicOrder], First],
FreeQ[a2182, #1 P[#2 + 1]] & @@ #[[-1, 1 ;; 2]] &][[All, All, -1]] // Flatten
CROSSREFS
KEYWORD
nonn,tabf
AUTHOR
Michael De Vlieger, Oct 12 2023
STATUS
approved