OFFSET
1,2
COMMENTS
Also this is an irregular array where row n contains the n! consecutive multiples of n starting with n!.
LINKS
Antti Karttunen, Rows 1..7 of irregular table, flattened.
FORMULA
a(n) = A084555(n-1) + 1.
EXAMPLE
When interpreted as an irregular table, the rows begin as:
1;
2, 4;
6, 9, 12, 15, 18, 21;
MAPLE
A[1]:= 1:
nextf:= 2!:
m:= 1:
for n from 2 to 100 do
A[n]:= A[n-1]+m;
if A[n] = nextf then
m:= m+1;
nextf:= (m+1)!;
fi;
od:
seq(A[i], i=1..100); # Robert Israel, Apr 28 2016
MATHEMATICA
Table[Range[n!, (n + 1)! - 1, n], {n, 5}] // Flatten (* Michael De Vlieger, Aug 29 2017 *)
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Leroy Quet, Jun 21 2007
STATUS
approved
