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.

A363293 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 A363293 #10 Apr 22 2025 21:55:17
%S A363293 1,1,2,7,26,101,412,1756,7692,34350,155980,718312,3345890,15735091,
%T A363293 74613107,356348561,1712593184,8276207120,40192085383,196045684833,
%U A363293 960042529894,4718201036195,23263440797758,115042992517035,570463195069614,2835840294969867,14129895469191476
%N A363293 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 A363293 nmax = 27; 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 A363293 Cf. A005750, A005754, A049075, A363294.
%K A363293 nonn
%O A363293 1,3
%A A363293 _Ilya Gutkovskiy_, May 26 2023