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.

A351639 Number of length n word structures with all distinct run-lengths using at most 3 symbols.

This page as a plain text file.
%I A351639 #9 Jan 29 2023 13:05:05
%S A351639 1,1,1,3,3,5,17,19,31,45,153,167,287,397,613,1695,2007,3185,4565,6799,
%T A351639 9235,24057,27645,44483,61619,92089,122857,179355,385995,468605,
%U A351639 713849,996331,1441447,1947813,2766657,3659135,7467623,8930629,13471885,18283575,26484639
%N A351639 Number of length n word structures with all distinct run-lengths using at most 3 symbols.
%H A351639 Andrew Howroyd, <a href="/A351639/b351639.txt">Table of n, a(n) for n = 0..1000</a>
%o A351639 (PARI) \\ See A351637 for P, R.
%o A351639 seq(n)={my(u=P(n)); concat([1], sum(k=1, n, R(u, k)*sum(r=k, 3, binomial(r, k)*(-1)^(r-k)/r!) ))}
%Y A351639 Column k=3 of A351637.
%Y A351639 Cf. A351638.
%K A351639 nonn
%O A351639 0,4
%A A351639 _Andrew Howroyd_, Feb 15 2022