cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A133580 a(0)=a(1)=1; for n>1, a(n) = 2*a(n-1) + 1 if a(n-1) and n are coprime, otherwise a(n) = a(n-1)/gcd(a(n-1),n).

This page as a plain text file.
%I A133580 #34 Feb 16 2015 04:17:11
%S A133580 1,1,3,1,3,7,15,31,63,7,15,31,63,127,255,17,35,71,143,287,575,1151,
%T A133580 2303,4607,9215,1843,3687,1229,2459,4919,9839,19679,39359,78719,
%U A133580 157439,314879,629759,1259519,2519039,5038079,10076159,20152319,40304639
%N A133580 a(0)=a(1)=1; for n>1, a(n) = 2*a(n-1) + 1 if a(n-1) and n are coprime, otherwise a(n) = a(n-1)/gcd(a(n-1),n).
%C A133580 The initial value a(0)=1 is somehow artificial; using a(0)=0 would yield the same subsequent terms using the recurrence formula already for n=1. - _M. F. Hasler_, Feb 15 2015
%H A133580 Harvey P. Dale, <a href="/A133580/b133580.txt">Table of n, a(n) for n = 0..1000</a>
%e A133580 Write the GCD of a(n-1) and n under a(n-1):
%e A133580 n = : 0 1 2 3 4 5  6  7  8 9 ...
%e A133580 a(n): 1 1 3 1 3 7 15 31 63 7 ...
%e A133580 gcd : 1 1 3 1 1 1  1  1  9 1 ...
%t A133580 a = {1, 1}; Do[If[GCD[n, a[[ -1]]] == 1, b = 2*a[[ -1]] + 1, b = a[[ -1]]/GCD[a[[ -1]], n]]; AppendTo[a, b], {n, 2, 50}]; a (* _Stefan Steinerberger_, Dec 31 2007 *)
%t A133580 nxt[{a_,b_}]:={a+1,If[CoprimeQ[b,a+1],2b+1,b/GCD[b,a+1]]}; Join[{1}, Transpose[ NestList[nxt,{1,1},50]][[2]]] (* _Harvey P. Dale_, Sep 16 2012 *)
%o A133580 (PARI) A=vector(1000,i,1);for(n=2,#A,A[n]=if(gcd(A[n-1],n)>1,A[n-1]/gcd(A[n-1],n),A[n-1]*2+1)) \\ _M. F. Hasler_, Feb 15 2015
%o A133580 (PARI) a=0;#A133580=vector(1000,n,a=if(gcd(a,n)>1,a/gcd(a,n),a*2+1)) \\ _M. F. Hasler_, Feb 15 2015
%Y A133580 Cf. A133058, A133579.
%K A133580 nonn
%O A133580 0,3
%A A133580 _Ctibor O. Zizka_, Dec 26 2007
%E A133580 Corrected and extended by _Stefan Steinerberger_, Dec 31 2007
%E A133580 Offset changed to 0 by _N. J. A. Sloane_, Feb 13 2015
%E A133580 The Mathematica programs are correct; b-file corrected by _Harvey P. Dale_, Feb 14 2015