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.

A317884 Number of series-reduced achiral free pure multifunctions (with empty expressions allowed) with one atom and n positions.

This page as a plain text file.
%I A317884 #34 May 17 2021 14:59:28
%S A317884 1,1,1,2,4,8,14,26,47,87,160,295,540,997,1832,3369,6197,11406,20975,
%T A317884 38594,70991,130610,240275,442043,813184,1496053,2752251,5063319,
%U A317884 9314879,17136632,31526032,57998423,106699160,196294065,361120800,664352454,1222204958
%N A317884 Number of series-reduced achiral free pure multifunctions (with empty expressions allowed) with one atom and n positions.
%C A317884 A series-reduced achiral expression (SRAE) is either (case 1) the leaf symbol "o", or (case 2) a possibly empty but not unitary expression of the form h[g, ..., g], where h and g are SRAEs. The number of positions in an SRAE is the number of brackets [...] plus the number of o's.
%C A317884 Also the number of series-reduced achiral Mathematica expressions with one atom and n positions.
%H A317884 Andrew Howroyd, <a href="/A317884/b317884.txt">Table of n, a(n) for n = 1..500</a>
%F A317884 a(1) = 1; a(n > 1) = a(n-1) + Sum_{0 < k < n-1} a(k) * Sum_{d|(n-k-1), d < n-k-1} a(d).
%e A317884 The a(6) = 8 SRAEs:
%e A317884   o[o,o,o,o]
%e A317884   o[o[],o[]]
%e A317884   o[][o,o,o]
%e A317884   o[][][o,o]
%e A317884   o[o,o,o][]
%e A317884   o[][o,o][]
%e A317884   o[o,o][][]
%e A317884   o[][][][][]
%p A317884 a:= proc(n) option remember; `if`(n=1, 1, a(n-1)+add(a(j)*add(
%p A317884       a(d), d=numtheory[divisors](n-j-1) minus {n-j-1}), j=1..n-1))
%p A317884     end:
%p A317884 seq(a(n), n=1..45);  # _Alois P. Heinz_, Sep 05 2018
%t A317884 allAchExprSR[n_] := If[n == 1, {"o"}, Join @@ Cases[Table[PR[k, n - k - 1], {k, n - 1}], PR[h_, g_] :> Join @@ Table[Apply @@@ Tuples[{allAchExprSR[h], Select[Tuples[allAchExprSR /@ p], SameQ @@ # &]}], {p, If[g == 0, {{}}, Join @@ Permutations /@ Rest[IntegerPartitions[g]]]}]]]; Table[Length[allAchExprSR[n]], {n, 12}]
%t A317884 (* Second program: *)
%t A317884 a[n_] := a[n] = If[n == 1, 1, a[n-1] + Sum[a[j]*DivisorSum[
%t A317884      n-j-1, If[# < n-j-1, a[#], 0]&], {j, 1, n-2}]];
%t A317884 Array[a, 45] (* _Jean-François Alcover_, May 17 2021, after _Alois P. Heinz_ *)
%o A317884 (PARI) seq(n)={my(p=O(x)); for(n=1, n, p = x + p*x*(1 + sum(k=2, n-2, subst(p + O(x^(n\k+1)), x, x^k)) ) + O(x*x^n)); Vec(p)} \\ _Andrew Howroyd_, Aug 19 2018
%o A317884 (PARI) seq(n)={my(v=vector(n)); v[1]=1; for(n=2, #v, v[n]=v[n-1] + sum(i=1, n-2, v[i]*sumdiv(n-i-1, d, if(d<n-i-1, v[d], 0)))); v} \\ _Andrew Howroyd_, Aug 19 2018
%Y A317884 Cf. A002033, A003238, A052893, A053492, A214577, A277996, A280000, A317853, A317875.
%Y A317884 Cf. A317882, A317883, A317885.
%K A317884 nonn
%O A317884 1,4
%A A317884 _Gus Wiseman_, Aug 09 2018
%E A317884 Terms a(13) and beyond from _Andrew Howroyd_, Aug 19 2018