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 A309206 #17 Jul 09 2025 04:47:13 %S A309206 1,1,1,1,5,1,1,1,7,1,1,1,13,19,5,1,221,1,1,1,1,1,13,17,5,1,47,4913,29, %T A309206 7,11,53,1,47,325,13,1147,41,1,1,41,1081,11,1,5,1,1,83,1,1,133,1,2491, %U A309206 97,5,103,61,1,1,19,226493,1,1,1,5,31,1,1,1,1271,289 %N A309206 a(n) = (2*n)!/A309205(n). %C A309206 _Bill Gosper_ points out that this is a better fingerprint for the series than A309205. %t A309206 F[n_] := Module[{p}, p = 1 + O[x]; For[k=2, k <= n, k++, p = Cos[x p]]; p]; %t A309206 seq[n_] := Module[{v}, v = CoefficientList[F[n], x]; Table[(2(k - 1))!/ Denominator[v[[2k - 1]]], {k, 1, n}]]; %t A309206 seq[71] (* _Jean-François Alcover_, Aug 27 2019, from PARI *) %o A309206 (PARI) \\ here F(n) gives n terms of power series. %o A309206 F(n)={my(p=1+O(x)); for(k=2, n, p=cos(x*p)); p} %o A309206 seq(n)={my(v=Vec(F(n))); vector(n, k, (2*(k-1))!/denominator(v[2*k-1]))} \\ _Andrew Howroyd_, Aug 17 2019 %Y A309206 Cf. A309204, A309205. %K A309206 nonn,frac %O A309206 0,5 %A A309206 _N. J. A. Sloane_, Jul 28 2019, following a suggestion from _Bill Gosper_ %E A309206 Terms a(31) and beyond from _Andrew Howroyd_, Aug 17 2019