OFFSET
1,2
COMMENTS
Do all terms belong to A242031 (weakly decreasing prime signature)? - Gus Wiseman, May 14 2021
LINKS
Charles R Greathouse IV, Table of n, a(n) for n = 1..417
EXAMPLE
Since the first 6 squarefree positive integers are 1, 2, 3, 5, 6, 7, the 6th term of the sequence is 1*2*3*5*6*7 = 1260.
From Gus Wiseman, May 14 2021: (Start)
The sequence of terms together with their prime signatures begins:
1: ()
2: (1)
6: (1,1)
30: (1,1,1)
180: (2,2,1)
1260: (2,2,1,1)
12600: (3,2,2,1)
138600: (3,2,2,1,1)
1801800: (3,2,2,1,1,1)
25225200: (4,2,2,2,1,1)
378378000: (4,3,3,2,1,1)
6432426000: (4,3,3,2,1,1,1)
122216094000: (4,3,3,2,1,1,1,1)
(End)
MATHEMATICA
Rest[FoldList[Times, 1, Select[Range[40], SquareFreeQ]]] (* Harvey P. Dale, Jun 14 2011 *)
PROG
(PARI) m=30; k=1; for(n=1, m, if(issquarefree(n), print1(k=k*n, ", ")))
CROSSREFS
KEYWORD
nonn
AUTHOR
Leroy Quet, Oct 07 2005
EXTENSIONS
More terms from Klaus Brockhaus, Oct 08 2005
STATUS
approved