login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A309171
a(n) = Product_{d|n} Stirling2(n,d).
1
1, 1, 1, 7, 1, 2790, 1, 216027, 3025, 21730275, 1, 143362465643243568744, 1, 404056132480, 500592722458920, 12056706465173227408551, 1, 99260615209905051640711424376160950, 1, 105138504356810366747790360523498652392500, 143413971571112402506500, 768149712982621155186
OFFSET
1,4
MATHEMATICA
Table[Product[StirlingS2[n, d], {d, Divisors[n]}], {n, 1, 22}]
PROG
(PARI) a(n) = my(d=divisors(n)); prod(k=1, #d, stirling(n, d[k], 2)); \\ Michel Marcus, Jul 16 2019
(Magma) [(&*[StirlingSecond(n, d): d in Divisors(n)]): n in [1..30]]; // Vincenzo Librandi, Jul 16 2019
CROSSREFS
Cf. A008277, A008578 (positions of 1's), A058808, A308037, A309169.
Sequence in context: A159252 A357389 A245329 * A296791 A246851 A258763
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Jul 15 2019
STATUS
approved