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.

A217780 Cumulative counting sequence: (adjective-before-noun) pairs with first term 1.

This page as a plain text file.
%I A217780 #17 Nov 11 2022 13:16:45
%S A217780 1,1,1,3,1,4,1,1,3,6,1,2,3,1,4,8,1,3,3,2,4,1,6,1,2,11,1,5,3,3,4,2,6,3,
%T A217780 2,1,8,13,1,8,3,4,4,3,6,5,2,2,8,1,11,1,5,16,1,10,3,6,4,4,6,7,2,4,8,2,
%U A217780 11,3,5,1,13,18,1,12,3,9,4,6,6,9,2,5,8,3,11,4,5,2,13,1,16,1,10,1,7
%N A217780 Cumulative counting sequence: (adjective-before-noun) pairs with first term 1.
%C A217780 After starting with 1, successive segments are generated in adjective-before-noun pairs as in A217760, not as in A055187.  That is, noun-integers occur in order of 1st appearance, not increasing order.
%H A217780 Seiichi Manyama, <a href="/A217780/b217780.txt">Table of n, a(n) for n = 1..10000</a>
%e A217780 Writing pairs vertically, the initial segments are
%e A217780 1..1..3..4 1..6 2 1..8 3 2 1 1..11 5 3 2 3 1
%e A217780 ...1..1..1 3..1 3 4..1 3 4 6 2...1 3 4 6 2 8.
%e A217780 The 5th segment is read "6 1's and 2 3's and 1 4," this being a count of all the previously written numbers.  The numbers 6,2,1 are used as adjectives, whereas 1,3,4 are used as nouns.  Here, the nouns are kept in order of first appearance; in A055187, they are in increasing order. - _Clark Kimberling_, Mar 25 2013
%t A217780 s = {1}; Do[s = Flatten[{s, {Count[s, #], #} & /@ DeleteDuplicates[s]}], {14}]; s (* _Peter J. C. Moses_, Mar 21 2013 *)
%Y A217780 Cf. A217760, A055187.
%K A217780 nonn,easy
%O A217780 1,4
%A A217780 _Clark Kimberling_, Mar 25 2013
%E A217780 More terms from _Seiichi Manyama_, Nov 10 2022