OFFSET
1,1
COMMENTS
This is presumably a permutation of the positive integers. The inverse permutation (or "index sequence") A322778 begins 4,6,1,10,13,11,2,14,... and gives the position in the continued fraction of Pi at which 1, 2, 3, 4, 5, 6, ... first appear. - Remark corrected by N. J. A. Sloane, Jan 04 2019
The name means that when a number not yet in this sequence appears in the continued fraction of Pi, then that number is added to the sequence. - T. D. Noe, May 06 2013
LINKS
Charles R Greathouse IV, Table of n, a(n) for n = 1..1000, May 06 2013
EXAMPLE
Since the actual continued fraction for Pi is 3, 7, 15, 1, 292, 1, 1, 1, 2, ..., this sequence begins 3, 7, 15, 1, 292, 2, ...
MATHEMATICA
DeleteDuplicates[ContinuedFraction[Pi, 1000]] (* Harvey P. Dale, May 06 2013 *)
t = {}; s = ContinuedFraction[Pi, 1000]; Do[If[! MemberQ[t, s[[n]]], AppendTo[t, s[[n]]]], {n, Length[s]}]; t (* T. D. Noe, May 06 2013 *)
PROG
(PARI) \p 10000
v=contfrac(Pi); for(i=1, #v, for(j=1, i-1, if(v[i]==v[j], v[i]=0; break))); v=select(n->n, v) \\ Charles R Greathouse IV, May 06 2013
CROSSREFS
KEYWORD
nice,nonn
AUTHOR
Lee Corbin (lcorbin(AT)rawbw.com), Jan 16 2009
EXTENSIONS
More terms from Harvey P. Dale, May 05 2013
STATUS
approved