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.

A107488 Number of letters in the words formed by the digital recitation of Pi in the English language.

This page as a plain text file.
%I A107488 #7 Nov 04 2021 19:21:13
%S A107488 5,3,4,3,4,4,3,3,4,5,4,5,4,5,4,5,3,5,5,4,3,3,3,4,5,5,5,5,3,5,4,4,4,3,
%T A107488 5,5,4,3,4,5,3,3,4,5,4,4,5,5,4,3,4,4,5,3,4,4,5,4,4,4,4,4,4,3,5,4,5,5,
%U A107488 3,3,4,4,3,3,5,3,3,4,5,4,4,5,3,3,5,4,5,4,5,3,4,5,4,3,3,3,5,4,3,5,4,5,3,3,4
%N A107488 Number of letters in the words formed by the digital recitation of Pi in the English language.
%C A107488 Essentially the same as A052384. [From _R. J. Mathar_, Aug 24 2008]
%e A107488 Three, one, four, one, five, nine has digit count 5, 3, 4, 3, 4, 4 the first 6 entries in the sequence.
%t A107488 RealDigits[Pi,10,120][[1]]/.{0->4,1->3,2->3,3->5,5->4,6->3,7->5,8->5,9->4} (* _Harvey P. Dale_, Nov 04 2021 *)
%o A107488 (PARI) readpi(n) = { local(x,a,d); default(realprecision,200); d=vector(10); a=vector(n); d[1]=4;d[2]=3;d[3]=3;d[4]=5;d[5]=4;d[6]=4;d[7]=3;d[8]=5;d[9]=5;d[10]=4; a=Vec(Str(Pi)); print1(5","); for(x=3,n-1, y=floor(eval(a[x])); print1(d[y+1]",") ) }
%K A107488 base,easy,nonn,word
%O A107488 1,1
%A A107488 _Cino Hilliard_, May 28 2005