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 A308246 #5 May 16 2019 21:20:17 %S A308246 1,1,2,4,8,18,44,104,246,620,1600,4082,10436,27360,73046,193296, %T A308246 509984,1371214,3727792,10065872,27145058,74142688,204005440, %U A308246 558475342,1527058912,4213709856,11694035010,32331790700,89266126856,248240818282,693599213260 %N A308246 G.f.: x * Product_{k>=1} (1 + a(k)*(-x)^k)^((-1)^k). %F A308246 Recurrence: a(n+1) = (1/n) * Sum_{k=1..n} ( Sum_{d|k} (-1)^(k/d+k+d+1)*d*a(d)^(k/d) ) * a(n-k+1). %t A308246 a[n_] := a[n] = SeriesCoefficient[x Product[(1 + a[k] (-x)^k)^((-1)^k), {k, 1, n - 1}], {x, 0, n}]; Table[a[n], {n, 1, 31}] %t A308246 a[n_] := a[n] = Sum[Sum[(-1)^(k/d + k + d + 1) d a[d]^(k/d), {d, Divisors[k]}] a[n - k], {k, 1, n - 1}]/(n - 1); a[1] = 1; Table[a[n], {n, 1, 31}] %Y A308246 Cf. A032305, A045648, A049075, A093637, A308245. %K A308246 nonn %O A308246 1,3 %A A308246 _Ilya Gutkovskiy_, May 16 2019