login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A096935 Smallest number k such that in its decimal representation the first n digits of pi=3.14... are contained in 11^k. 0
3, 3, 18, 189, 247, 993, 993, 3164, 22045, 23345 (list; graph; refs; listen; history; internal format)
OFFSET

1,1

EXAMPLE

n=3, '314': 11^18 = 5559917313492231481, therefore a(3)=18: floor(11^a(3) / 100) mod 1000 = 314.

MATHEMATICA

f[0] = 1; f[n_] := f[n] = Block[{pi = StringTake[ ToString[ RealDigits[Pi, 10, n][[1]]], {2, -2}], k = f[n - 1]}, While[ StringPosition[ ToString[ IntegerDigits[11^k]], pi] == {}, k++ ]; k]; (from Robert G. Wilson v)

CROSSREFS

Cf. A001020, A000796.

Sequence in context: A183039 A192527 A189737 * A136475 A143180 A074249

Adjacent sequences:  A096932 A096933 A096934 * A096936 A096937 A096938

KEYWORD

nonn,base

AUTHOR

Reinhard Zumkeller (reinhard.zumkeller(AT)gmail.com), Aug 18 2004

EXTENSIONS

a(9) & a(10) from Robert G. Wilson v (rgwv(AT)rgwv.com), Aug 19 2004 with a(11)>40000.

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 15 13:12 EST 2012. Contains 205790 sequences.