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.

A261837 Number of compositions of n into distinct parts where each part i is marked with a word of length i over an n-ary alphabet whose letters appear in alphabetical order.

This page as a plain text file.
%I A261837 #7 Jul 12 2021 13:47:44
%S A261837 1,1,3,46,195,1876,51114,322764,3644355,43916950,2427338628,
%T A261837 18277511616,272107762602,3507931293608,62485721142820,
%U A261837 5810222040368296,53025343448015811,913540133071336044,13871534219465464002,253750203721349071650,5307815745011707670820
%N A261837 Number of compositions of n into distinct parts where each part i is marked with a word of length i over an n-ary alphabet whose letters appear in alphabetical order.
%H A261837 Alois P. Heinz, <a href="/A261837/b261837.txt">Table of n, a(n) for n = 0..500</a>
%F A261837 a(n) = A261835(n,n).
%p A261837 b:= proc(n, i, p, k) option remember;
%p A261837       `if`(i*(i+1)/2<n, 0, `if`(n=0, p!, b(n, i-1, p, k)+
%p A261837       `if`(i>n, 0, b(n-i, i-1, p+1, k)*binomial(i+k-1, k-1))))
%p A261837     end:
%p A261837 a:= n-> b(n$2, 0, n):
%p A261837 seq(a(n), n=0..30);
%t A261837 b[n_, i_, p_, k_] := b[n, i, p, k] =
%t A261837      If[i (i + 1)/2 < n, 0, If[n == 0, p!, b[n, i - 1, p, k] +
%t A261837      If[i > n, 0, b[n - i, i - 1, p + 1, k]*Binomial[i + k - 1, k - 1]]]];
%t A261837 a[n_] := b[n, n, 0, n];
%t A261837 Table[a[n], {n, 0, 30}] (* _Jean-François Alcover_, Jul 12 2021, after _Alois P. Heinz_ *)
%Y A261837 Main diagonal of A261835.
%K A261837 nonn
%O A261837 0,3
%A A261837 _Alois P. Heinz_, Sep 02 2015