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.

A104056 Each number is the rank in the alphabet of a letter (and "0" stands for a space). After substitution one reads (in English): "one five one four five zero six nine two two five zero ..." which is the succession of the digits of the sequence itself: 1 5 1 4 5 0 6 9 2 2 5 0...

This page as a plain text file.
%I A104056 #8 Jan 23 2023 12:08:18
%S A104056 15,14,5,0,6,9,22,5,0,15,14,5,0,6,15,21,18,0,6,9,22,5,0,26,5,18,15,0,
%T A104056 19,9,24,0,14,9,14,5,0,20,23,15,0,20,23,15,0,6,9,22,5,0,26,5,18,15,0,
%U A104056 15,14,5,0,6,9,22,5,0,15,14,5,0,6,15,21,18,0,6,9,22,5,0,26,5,18,15,0,19,9,24
%N A104056 Each number is the rank in the alphabet of a letter (and "0" stands for a space). After substitution one reads (in English): "one five one four five zero six nine two two five zero ..." which is the succession of the digits of the sequence itself: 1 5 1 4 5 0 6 9 2 2 5 0...
%C A104056 The only other such sequence starts with: 20,23,15,0,26,5,18,15,0... (which reads "two zero...")
%o A104056 Contribution from _M. F. Hasler_, Aug 18 2010: (Start)
%o A104056 (PARI) /* helper function */
%o A104056 digit2seq(d) = { concat( apply( x->bitand(x,-97), Vec( Vecsmall( Str( [zero,one,two,three,four,five,six,seven,eight,nine][d+1])))),0) }
%o A104056 /* compute this sequence to at least Nmin terms. */
%o A104056 A104056(Nmin,a=[],pos=1)={ while( Nmin > #a=concat( a, concat( apply( digit2seq, eval( Vec( Str( if( #a, a[pos++ ], 15) )))))),);a}
%o A104056 (End)
%Y A104056 Cf. A169978.
%Y A104056 Cf. A104057 (Same rule, but starting with 20). [From _M. F. Hasler_, Aug 18 2010]
%K A104056 base,easy,nonn,word
%O A104056 1,1
%A A104056 _Eric Angelini_, Mar 02 2005
%E A104056 Typo in sequence corrected by _D. S. McNeil_, Aug 18 2010
%E A104056 Extended beyond a(55) by _M. F. Hasler_, Aug 18 2010