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.

A130900 Number of partitions of n into {number of partitions of n into "number of partitions of n into 'number of partitions of n into partition numbers' numbers" numbers} numbers.

This page as a plain text file.
%I A130900 #10 Oct 26 2015 10:32:12
%S A130900 1,2,3,5,6,10,12,17,22,29,36,48,58,73,91,111,134,165,197,236,283,335,
%T A130900 395,468,547,639,747,866,1001,1160,1334,1530,1757,2007,2286,2606,2958,
%U A130900 3349,3793,4281,4821,5430,6097,6833,7657,8559,9549,10652,11858,13178
%N A130900 Number of partitions of n into {number of partitions of n into "number of partitions of n into 'number of partitions of n into partition numbers' numbers" numbers} numbers.
%C A130900 The "partition transformation" of sequence A can be defined as the number of partitions of n into elements of sequence A. This sequence (A130900) is the partition transformation composed with itself five times on the positive integers.
%H A130900 Alois P. Heinz, <a href="/A130900/b130900.txt">Table of n, a(n) for n = 1..1000</a>
%e A130900 a(6) = 10 because there are 10 partitions of 6 whose parts are 1,2,3,4,6 which are terms of sequence A130899, which is the number of partitions of n into numbers of partitions of n into numbers of partitions of n into partition numbers.
%p A130900 pp:= proc(p) local b;
%p A130900        b:= proc(n, i)
%p A130900              if n<0 then 0
%p A130900            elif n=0 then 1
%p A130900            elif i<1 then 0
%p A130900            else b(n,i):= b(n,i-1) +b(n-p(i), i)
%p A130900              fi
%p A130900            end;
%p A130900        n-> b(n, n)
%p A130900      end:
%p A130900 a:= (pp@@5)(n->n):
%p A130900 seq(a(n), n=1..100);  # _Alois P. Heinz_, Sep 13 2011
%t A130900 pp[p_] := Module[{b}, b[n_, i_] := Which[n < 0, 0, n == 0, 1, i < 1, 0, True, b[n, i] = b[n, i - 1] + b[n - p[i], i]]; b[#, #]&]; a = Nest[pp, Identity, 5]; Table[a[n], {n, 1, 100}] (* _Jean-François Alcover_, Oct 26 2015, after _Alois P. Heinz_ *)
%Y A130900 Cf. A000027, A000041, A007279, A130898, A130899, A130900 which are m-fold self-compositions of the "partition transformation" on the counting numbers, m=0, 1, 2, 4, 5.
%K A130900 nonn
%O A130900 1,2
%A A130900 _Graeme McRae_, Jun 07 2007