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.

A349424 Integers that are the product of two factorials A000142.

Original entry on oeis.org

1, 2, 4, 6, 12, 24, 36, 48, 120, 144, 240, 576, 720, 1440, 2880, 4320, 5040, 10080, 14400, 17280, 30240, 40320, 80640, 86400, 120960, 241920, 362880, 518400, 604800, 725760, 967680, 2177280, 3628800, 4838400, 7257600, 8709120, 21772800, 25401600, 29030400
Offset: 1

Views

Author

Frank M Jackson, Nov 17 2021

Keywords

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

Examples

			720 is a term since 720 = 5!*3! = 6!*0! = 6!*1!.
		

Crossrefs

Subsequence of A001013.

Programs

  • Mathematica
    (Union@Flatten@Table[x!*y!, {x, 0, 100}, {y, 0, x}])[[1 ;; 50]]
  • PARI
    lista(nn) = select(x->(x<2*nn!), setbinop((x,y)->x!*y!, [1..nn])); \\ Michel Marcus, Nov 17 2021