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!)
A090897 Next n digits of Pi. 8

%I #60 Jan 27 2023 19:47:58

%S 3,14,159,2653,58979,323846,2643383,27950288,419716939,9375105820,

%T 97494459230,781640628620,8998628034825,34211706798214,

%U 808651328230664,7093844609550582,23172535940812848,111745028410270193,8521105559644622948,95493038196442881097

%N Next n digits of Pi.

%C More precisely: the integer resulting from reading the "next n digits of Pi" in base 10, so leading zeros cannot be directly seen, but easily be "reconstructed" from the fact that the term will have less than n digits although it is made from n digits of Pi. - _M. F. Hasler_, Jan 06 2023

%C It seems that all terms have at least one prime factor that does not appear in the combined list of prime factors of the preceding terms of the sequence. - _Mario Cortés_, Aug 20 2020 [Checked up to n=65. - _Michel Marcus_, Aug 21 2020]

%H Michel Marcus, <a href="/A090897/b090897.txt">Table of n, a(n) for n = 1..100</a>

%F a(n) = floor( Pi * 10^(n*(n+1)/2-1) ) mod (10^n). - _Carl R. White_, Aug 13 2010

%e a(3) = 159 because after the first (a(1) = 3) and the next two digits of Pi (a(2) = 14) the next three are 159.

%e From _Aaron T Cowan_, Jan 03 2023: (Start)

%e Other examples are as follows and fall into a triangular digit pattern, though there is no guarantee that they will remain triangular in all cases

%e a(1) = 3;

%e a(2) = 14;

%e a(3) = 159;

%e a(4) = 2653;

%e a(5) = 58979;

%e (End)

%e Indeed, precisely whenever A086639(n) = 0, then the corresponding term of this sequence will lack one or more leading zeros and therefore the above list will deviate from the triangular shape. - _M. F. Hasler_, Jan 06 2023

%p Partitioner := proc(cons, len) local i, R, spl; R := []; i:=0;

%p spl := L -> [seq([seq(L[i], i=1 + n*(n+1)/2..(n+1)*(n+2)/2)], n=0..len)]:

%p ListTools:-Reverse(convert(floor(cons*10^((len+1)*(len+2)/2)), base, 10)):

%p map(`@`(parse, cat, op), spl(%)) end:

%p aList := -> Partitioner(Pi, 20); aList(20); # _Peter Luschny_, Aug 22 2020

%t With[{pi=RealDigits[Pi,10,500][[1]]},FromDigits/@Table[Take[pi,{n (n-1)/2+1, (n(n+1))/2}],{n,25}]] (* _Harvey P. Dale_, Dec 24 2011 *)

%o (PARI) lista(nn) = {my(nd = 5+nn*(nn+1)/2); default(realprecision, nd); my(vd = digits(floor(Pi*10^nd))); my(pos = 1); my(vr = vector(nn)); for (n=1, nn, vr[n] = fromdigits(vector(n, k, vd[k+ pos-1])); pos += n;); vr;} \\ _Michel Marcus_, Aug 21 2020

%Y Cf. A000796 (Pi), A016062, A081368, A086639.

%K easy,nonn,base

%O 1,1

%A _Michael Joseph Halm_, Feb 26 2004

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 September 9 12:04 EDT 2024. Contains 375764 sequences. (Running on oeis4.)