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.

A338112 Least number that is both the sum and product of n distinct positive integers.

Original entry on oeis.org

1, 3, 6, 24, 120, 720, 5040, 40320, 362880, 3628800, 39916800, 479001600, 6227020800, 87178291200, 1307674368000, 20922789888000, 355687428096000, 6402373705728000, 121645100408832000, 2432902008176640000, 51090942171709440000, 1124000727777607680000
Offset: 1

Views

Author

Rick L. Shepherd, Oct 10 2020

Keywords

Comments

Each a(n) = n! except that a(2) = 1+2 = 3. For n > 0, only each integer >= A000217(n) is the sum of n distinct positive integers. For the integers that are products of these types, see below.

Examples

			a(1) = 1 because we define sums and products as sum(m) := prod(m) := m for all integers m in this case where these normally-binary operations only have one operand.
a(3) = 6 because 6 = 1+2+3 = 1*2*3 (with all the distinct positive integers the same in the sum and the product only for this term and a(1)).
a(5) = 120 because 120 = 1+2+3+4+110 (= ... = 22+23+24+25+26) = 1*2*3*4*5.
		

Crossrefs

Cf. Products of k distinct positive integers: A000027 (k=1), A020725 (k=2), A080257 (k=3), A122181 (k=4).

Programs

  • Mathematica
    Array[If[# <= 2, (#^2 - #)/2 &[# + 1], #!] &, 22] (* Michael De Vlieger, Oct 15 2020 *)
    With[{nn=30},Rest[CoefficientList[Series[x (2+x-x^2)/(2(1-x)),{x,0,nn}],x] Range[0,nn]!]] (* Harvey P. Dale, Aug 10 2021 *)
  • PARI
    a(n) = if(n<1, , if(n==2, 3, n!))

Formula

a(n) = A000142(n) for n = 1 and n > 2; a(2) = 3.
a(n) = max(A000142(n), A000217(n)).
E.g.f.: x*(2 + x - x^2)/(2*(1 - x)). - Stefano Spezia, Oct 11 2020