OFFSET
1,2
COMMENTS
The first term a(1) = 0!*0! = 1!*0! = 1!*1!.
This is also the number of perfect matchings in a graph connecting C-G and A-U pairs in a RNA string (see Rosalind link). - Lorenzo Pieri, Mar 02 2023
EXAMPLE
720 is a term since 720 = 5!*3! = 6!*0! = 6!*1!.
MATHEMATICA
(Union@Flatten@Table[x!*y!, {x, 0, 100}, {y, 0, x}])[[1 ;; 50]]
PROG
(PARI) lista(nn) = select(x->(x<2*nn!), setbinop((x, y)->x!*y!, [1..nn])); \\ Michel Marcus, Nov 17 2021
CROSSREFS
KEYWORD
nonn
AUTHOR
Frank M Jackson, Nov 17 2021
STATUS
approved