login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A102465 a(n) = number of distinct values of Product_{i=1..r} x_i!*i!^x_i, where (x_1, ..., x_r) is an r-tuple of nonnegative integers with Sum_{i=1..r} i*x_i = n. 2
1, 1, 2, 4, 4, 7, 7, 13, 17, 23, 26, 40, 45, 60, 64, 102, 115, 148, 169, 225, 261, 337, 375, 470, 552, 668, 780, 954, 1078, 1331, 1469, 1811, 2055, 2475, 2776, 3343, 3764, 4447, 4983, 5898, 6622, 7771, 8646, 10192, 11403, 13238, 14680, 17011, 19010, 21877 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
LINKS
MAPLE
b:= proc(n, i) option remember; `if`(n=0, {1}, `if`(i<1, {},
{seq(map(x-> x*i!^j*j!, b(n-i*j, i-1))[], j=0..n/i)})) end:
a:= n-> nops(b(n, n)):
seq(a(n), n=1..40); # Alois P. Heinz, Apr 13 2012
MATHEMATICA
b[n_, i_] := b[n, i] = If[n == 0, {1}, If[i < 1, {}, Table[# i!^j j!& /@ b[n - i j, i - 1], {j, 0, n/i}] // Flatten // Union]];
a[n_] := Length[b[n, n]];
Array[a, 40] (* Jean-François Alcover, Nov 09 2020, after Alois P. Heinz *)
CROSSREFS
Cf. A073906.
Sequence in context: A023844 A132083 A286014 * A139825 A347067 A164721
KEYWORD
nonn
AUTHOR
Vladeta Jovovic, Feb 23 2005
EXTENSIONS
More terms from David Wasserman, Apr 11 2008
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 05:49 EDT 2024. Contains 371964 sequences. (Running on oeis4.)