The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A274762 Number of sequences with up to n copies each of 1,2,...,n. 5
1, 2, 19, 5248, 191448941, 1856296498826906, 7843008902239185171370147, 21408941228439913825832318523364743824, 52400635808473472283994952631626957015306076632624953, 152306240915343870544748050434914720360496623911547121447677238156864610 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) ~ exp(11/12) * n^(n^2 - n/2 + 1) / (2*Pi)^((n-1)/2). - Vaclav Kotesovec, May 24 2020
EXAMPLE
a(0) = 1: () = the empty sequence.
a(1) = 2: (), 1.
a(2) = 19: (), 1, 2, 11, 12, 21, 22, 112, 121, 122, 211, 212, 221, 1122, 1212, 1221, 2112, 2121, 2211.
MAPLE
b:= proc(n, k, i) option remember; `if`(k=0, 1,
`if`(i<1, 0, add(b(n, k-j, i-1)/j!, j=0..min(k, n))))
end:
a:= n-> add(b(n, k, n)*k!, k=0..n^2):
seq(a(n), n=0..10);
MATHEMATICA
Table[Sum[k!*SeriesCoefficient[Sum[x^j/j!, {j, 0, n}]^n, {x, 0, k}], {k, 0, n^2}], {n, 0, 10}] (* Vaclav Kotesovec, May 24 2020 *)
PROG
(PARI) {a(n) = sum(i=0, n^2, i!*polcoef(sum(j=0, n, x^j/j!)^n, i))} \\ Seiichi Manyama, May 19 2019
CROSSREFS
Row sums of A234574.
Main diagonal of A308292.
Sequence in context: A365050 A024229 A094663 * A091688 A306207 A355466
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Jul 04 2016
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 June 5 21:53 EDT 2024. Contains 373110 sequences. (Running on oeis4.)