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.

A361095 E.g.f. satisfies A(x) = exp( 1/(1 - x/A(x)) - 1 ).

This page as a plain text file.
%I A361095 #11 Mar 15 2023 11:11:31
%S A361095 1,1,1,-2,-3,56,-155,-2736,34489,72064,-6599799,53676800,1155350581,
%T A361095 -32238425088,-3604716947,14790925735936,-235482791871375,
%U A361095 -4972572910452736,254158358486634001,-1028499606209101824,-202204782754527137939,5371925138905661440000
%N A361095 E.g.f. satisfies A(x) = exp( 1/(1 - x/A(x)) - 1 ).
%H A361095 Winston de Greef, <a href="/A361095/b361095.txt">Table of n, a(n) for n = 0..415</a>
%F A361095 a(n) = n! * Sum_{k=1..n} (-n+1)^(k-1) * binomial(n-1,n-k)/k! for n>0.
%o A361095 (PARI) a(n) = if(n==0, 1, n!*sum(k=1, n, (-n+1)^(k-1)*binomial(n-1, n-k)/k!));
%Y A361095 Cf. A052873, A361093, A361094, A361096, A361097.
%K A361095 sign
%O A361095 0,4
%A A361095 _Seiichi Manyama_, Mar 01 2023