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”).

A308463
a(n) = Sum_{k=1..n, gcd(n,k) = 1} Stirling2(n,k).
1
1, 1, 4, 7, 51, 16, 876, 2045, 15475, 15256, 678569, 2006863, 27644436, 46065293, 669225640, 5235101739, 82864869803, 234937438645, 5832742205056, 25117329128165, 235703526149476, 1886712616836675, 44152005855084345, 102153081219673712, 3428690854204959151
OFFSET
1,3
MATHEMATICA
a[n_] := Sum[If[GCD[n, k] == 1, StirlingS2[n, k] , 0], {k, 1, n}]; Table[a[n], {n, 1, 25}]
PROG
(PARI) a(n) = sum(k=1, n, if (gcd(n, k)==1, stirling(n, k, 2))); \\ Michel Marcus, May 28 2019
CROSSREFS
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, May 28 2019
STATUS
approved