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.

A363294 G.f. A(x) satisfies: A(x) = x * exp( A(x)^2/x + A(-x^2)^2/(2*x^2) + A(x^3)^2/(3*x^3) + A(-x^4)^2/(4*x^4) + ... ).

This page as a plain text file.
%I A363294 #5 May 26 2023 08:51:00
%S A363294 1,1,3,10,37,154,676,3053,14187,67459,326241,1599480,7933272,39736160,
%T A363294 200700204,1021052197,5227501077,26912956631,139244637915,
%U A363294 723631840568,3775598797694,19770494002049,103865161431895,547291750362216,2891718659119578,15317429567883000
%N A363294 G.f. A(x) satisfies: A(x) = x * exp( A(x)^2/x + A(-x^2)^2/(2*x^2) + A(x^3)^2/(3*x^3) + A(-x^4)^2/(4*x^4) + ... ).
%t A363294 nmax = 26; A[_] = 0; Do[A[x_] = x Exp[Sum[A[-(-x)^k]^2/(k x^k), {k, 1, nmax}]] + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x] // Rest
%Y A363294 Cf. A005750, A005754, A045648, A363293.
%K A363294 nonn
%O A363294 1,3
%A A363294 _Ilya Gutkovskiy_, May 26 2023