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!)
A330084 a(n) is the smallest k > 0 such that n occurs immediately after the decimal point in the decimal expansion of k*Pi. 0
36, 1, 2, 24, 3, 4, 12, 5, 6, 7, 29, 22, 15, 8, 1, 100, 93, 86, 79, 72, 65, 58, 51, 37, 30, 23, 16, 9, 2, 108, 94, 87, 80, 73, 66, 59, 52, 45, 31, 24, 17, 10, 3, 109, 102, 95, 81, 74, 67, 60, 53, 46, 39, 25, 18, 11, 4, 110, 103, 96, 89, 75, 68, 61, 54, 47, 40 (list; graph; refs; listen; history; text; internal format)
OFFSET

0,1

COMMENTS

Any number occurring in this sequence occurs infinitely many times since the smallest such k for a specific n is also the smallest such k for all numbers formed by the concatenation of the initial digits after the decimal point in the decimal expansion of k*Pi.

From A266242, only 36 appears in this sequence. - Rémy Sigrist, Dec 01 2019

LINKS

Table of n, a(n) for n=0..66.

FORMULA

a(n) = 1 iff n belongs to A039916. - Rémy Sigrist, Dec 01 2019

EXAMPLE

For n = 0: The decimal expansion of 36*Pi starts 113.097335529232... and this is the smallest multiple of Pi where 0 occurs immediately after the decimal point, so a(0) = 36.

MATHEMATICA

a[n_]:=(k=1; While[Floor[(Pi*k-Floor[Pi*k])*10^Length[IntegerDigits[n]]]!=n, k++]; Return[k]); Table[a[n], {n, 0, 67}] (* Joshua Oliver, Dec 01 2019 *)

PROG

(PARI) pidigits(multipl, len) = floor((Pi*multipl - floor(Pi*multipl)) * 10^len)

a(n) = for(k=1, oo, if(pidigits(k, #Str(n))==n, return(k)))

CROSSREFS

Cf. A000796, A039916, A266242.

Sequence in context: A174673 A203277 A156645 * A350385 A037935 A159824

Adjacent sequences: A330081 A330082 A330083 * A330085 A330086 A330087

KEYWORD

nonn,base

AUTHOR

Felix Fröhlich, Dec 01 2019

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 March 29 10:22 EDT 2023. Contains 361598 sequences. (Running on oeis4.)