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.
%I A095975 #26 Nov 21 2022 08:42:46 %S A095975 1,2,5,11,27,60,147,344,839,2031,5017,12379,30921,77407,195121,493451, %T A095975 1253613,3194303,8166757,20933754,53798919,138566312,357647565, %U A095975 924834079,2395702801,6215748612,16150985071,42024182520,109485000777,285578913962,745728542725 %N A095975 -a(n) is inverse EULER transform of -A000041(n). %H A095975 Alois P. Heinz, <a href="/A095975/b095975.txt">Table of n, a(n) for n = 1..1000</a> %H A095975 N. J. A. Sloane, <a href="/transforms.txt">Transforms</a> %F A095975 Moebius transform of A055890(n). %F A095975 a(n) ~ d^n / n, d = 2.69832910647421123126399866618837... (see A246828). - _Vaclav Kotesovec_, Aug 25 2014 %p A095975 with(numtheory): b:= proc(n) option remember; `if`(n=0,1, add(add(d, d=divisors(j)) *b(n-j), j=1..n)/n) end: c:= proc(n) option remember; local j; add(c(j) *b(n-j), j=1..n-1)-n*b(n) end: a:= -proc(n) option remember; local d; `if`(n=0,1, add(mobius(n/d)*c(d), d=divisors(n))/n) end: seq(a(n), n=1..40); # _Alois P. Heinz_, Sep 09 2008 %p A095975 # The function EulerInvTransform is defined in A358451. %p A095975 a := -EulerInvTransform(n -> -combinat:-numbpart(n)): %p A095975 seq(a(n), n = 1..31); # _Peter Luschny_, Nov 21 2022 %t A095975 b[n_] := b[n] = If[n == 0, 1, Sum[Sum[d, {d, Divisors[j]}]*b[n-j], {j, 1, n}]/n]; c[n_] := c[n] = Sum[c[j]*b[n-j], {j, 1, n-1}] - n*b[n]; a[n_] := -If[n == 0, 1, Sum[MoebiusMu[n/d]*c[d], {d, Divisors[n]}]/n]; Table[a[n], {n, 1, 40}] (* _Jean-François Alcover_, Feb 24 2015, after _Alois P. Heinz_ *) %Y A095975 Cf. A055887, A246828. %K A095975 easy,nonn %O A095975 1,2 %A A095975 _Vladeta Jovovic_, Jul 20 2004 %E A095975 More terms from _Alois P. Heinz_, Sep 09 2008