The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A159878 The digits of Pi whose spellings in English contain no i's. 0
3, 1, 4, 1, 2, 3, 7, 3, 2, 3, 4, 2, 4, 3, 3, 3, 2, 7, 0, 2, 4, 1, 7, 1, 3, 3, 7, 1, 0, 2, 0, 7, 4, 4, 4, 2, 3, 0, 7, 1, 4, 0, 2, 2, 0, 2, 0, 3, 4, 2, 3, 4, 2, 1, 1, 7, 0, 7, 2, 1, 4, 0, 1, 3, 2, 2, 3, 0, 4, 7, 0, 3, 4, 4, 0, 0, 2, 2, 3, 1, 7, 2, 3, 4, 0, 1, 2, 4, 1, 1, 1, 7, 4, 0, 2, 4, 1, 0, 2, 7, 0, 1, 3, 2, 1 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Blind Pi: The series of digits of Pi A000796 after removal of any 5, 6, 8 or 9 (see A095763, A089589).
The difference of the value of this constant to Pi is 0.000355..., compared to a difference of 0.0012... = A003077 for 22/7.
The only other alpha language that has no numbers 0 to 9 with an i is Albanian.
It is natural to ask "is the constant defined in this way irrational, transcendental?"
LINKS
EXAMPLE
Pi = 3.1415... . The digit 5 or five contains an i in the spelling. So 5 is not in the sequence.
MATHEMATICA
Flatten[ RealDigits[Pi, 10, 174][[1]] /. {5 -> {}, 6 -> {}, 8 -> {}, 9 -> {}}] (* Robert G. Wilson v, May 27 2009 *)
PROG
(PARI) blindpi(n) =
{
default(realprecision, 1000);
local(pi, x);
pi=Vec(Str(Pi*10^99));
default(realprecision, 28);
for(x=1, n,
if(pi[x]=="0"||pi[x]=="1"||pi[x]=="2"||pi[x]=="3"||pi[x]=="4"||pi[x]=="7",
print1(pi[x]", ");
);
);
}
CROSSREFS
Sequence in context: A143319 A078011 A010285 * A346562 A230767 A324116
KEYWORD
base,word,nonn
AUTHOR
Cino Hilliard, Apr 25 2009
EXTENSIONS
Edited by R. J. Mathar, Apr 28 2009
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 14 13:07 EDT 2024. Contains 372533 sequences. (Running on oeis4.)