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!)
A095713 Triangle of numbers obtained by reversing the first n digits of golden ratio phi and juxtaposing. 1

%I #3 Jul 16 2012 17:47:05

%S 1,6,1,1,6,1,8,1,6,1,0,8,1,6,1,3,0,8,1,6,1,3,3,0,8,1,6,1,9,3,3,0,8,1,

%T 6,1,8,9,3,3,0,8,1,6,1,8,8,9,3,3,0,8,1,6,1,7,8,8,9,3,3,0,8,1,6,1,4,7,

%U 8,8,9,3,3,0,8,1,6,1,9,4,7,8,8,9,3,3,0,8,1,6,1,8,9,4,7,8,8,9,3,3,0,8,1,6,1

%N Triangle of numbers obtained by reversing the first n digits of golden ratio phi and juxtaposing.

%e 1; 6,1; 1,6,1; 8,1,6,1; 0,8,1,6,1;... (reverse order of 1; 1.6; 1.61; 1.618; 1.6180;...)

%t nn=20;With[{gr=RealDigits[GoldenRatio,10,nn][[1]]},Flatten[Table[ Reverse[ Take[gr,n]],{n,nn}]]] (* _Harvey P. Dale_, Jul 16 2012 *)

%o (PARI) a(n)=if(n<1,0,default(realprecision,n+2);floor((1/2+sqrt(5)/2)*10^(n-1))%10); b(n)=1+binomial(1+floor(1/2+sqrt(2*n)),2)-n; for(n=1,120,print1(a(b(n)),",")

%Y Cf. A001622.

%K base,easy,nonn,tabl

%O 1,2

%A Herman Jamke (hermanjamke(AT)fastmail.fm), Jul 07 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 July 31 14:41 EDT 2024. Contains 374801 sequences. (Running on oeis4.)