login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A108025
Number of letters in the words formed by the digital recitation of phi in the English language.
0
3, 3, 3, 5, 4, 5, 5, 4, 5, 5, 5, 4, 4, 5, 4, 4, 5, 4, 5, 3, 4, 4, 4, 5, 3, 5, 5, 4, 5, 3, 4, 3, 5, 5, 3, 3, 5, 5, 3, 4, 5, 4, 4, 3, 5, 4, 5, 4, 4, 5, 3, 3, 5, 3, 3, 3, 5, 4, 4, 4, 5, 3, 3, 3, 5, 4, 4, 3, 3, 4, 4, 3, 3, 5, 3, 5, 4, 4, 3, 4, 4, 4, 5, 4, 5, 3, 4, 5, 3, 4, 4, 3, 5, 4, 5, 4, 3, 3, 5, 5, 4, 5, 4, 5, 4
OFFSET
1,1
MATHEMATICA
RealDigits[ GoldenRatio, 10, 111][[1]] /. {0->4, 1->3, 2->3, 3->5, 5->4, 6->3, 7->5, 8->5, 9->4} (* Robert G. Wilson v, Jun 03 2005 *)
PROG
(PARI) readphi(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((sqrt(5)+1)/2)); print1(3", "); for(x=3, n-1, y=floor(eval(a[x])); print1(d[y+1]", ") ) }
CROSSREFS
Sequence in context: A321790 A076566 A083574 * A192451 A129856 A136800
KEYWORD
base,easy,nonn,word
AUTHOR
Cino Hilliard, May 31 2005
STATUS
approved