cp's OEIS Frontend

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.

A309174 E.g.f. A(x) satisfies: A(x) = (1/(1 - x)) * Product_{k>=2} A(x^k)^(1/k).

This page as a plain text file.
%I A309174 #7 Jul 15 2019 15:40:38
%S A309174 1,1,3,11,65,369,3139,24667,268449,2777345,34932131,432114891,
%T A309174 6790407073,97969389361,1671204338595,28382893729499,557174580764609,
%U A309174 10512263160373377,228918738980395459,4817409763554888715,115117419384636141441,2688602544800222293361
%N A309174 E.g.f. A(x) satisfies: A(x) = (1/(1 - x)) * Product_{k>=2} A(x^k)^(1/k).
%F A309174 E.g.f.: Product_{k>=1} 1/(1 - x^k)^(A074206(k)/k).
%t A309174 terms = 21; A[_] = 1; Do[A[x_] = 1/(1 - x) Product[A[x^k]^(1/k), {k, 2, terms}] + O[x]^(terms + 1) // Normal, terms + 1]; CoefficientList[A[x], x] Range[0, terms]!
%Y A309174 Cf. A074206, A129374, A307604, A309175.
%K A309174 nonn
%O A309174 0,3
%A A309174 _Ilya Gutkovskiy_, Jul 15 2019