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!)
A062321 a(1) = 1; a(n) = gcd {n*(n+1), a(n-1) * (a(n-1) + 1)} for n > 1. 1

%I #12 Jun 29 2018 03:56:26

%S 1,2,6,2,6,42,14,6,6,2,6,6,14,210,30,2,6,6,2,6,42,2,6,6,2,6,42,14,30,

%T 930,62,6,6,14,210,6,2,6,6,2,6,42,86,6,6,2,6,42,14,30,6,2,6,6,14,42,6,

%U 2,6,6,2,6,42,2,6,6,2,6,42,14,6,6,2,6,6,14,42,6,2,6,6,2,6,42,86,7482

%N a(1) = 1; a(n) = gcd {n*(n+1), a(n-1) * (a(n-1) + 1)} for n > 1.

%H Harry J. Smith, <a href="/A062321/b062321.txt">Table of n, a(n) for n = 1..1000</a>

%e a(31) = gcd(31 * 32, a(30) * (a(30) + 1)) = gcd(31*32, 930*931) = 62

%t RecurrenceTable[{a[1]==1,a[n]==GCD[n(n+1),a[n-1](a[n-1]+1)]},a,{n,90}] (* _Harvey P. Dale_, Dec 21 2011 *)

%o (PARI) { for (n=1, 1000, if (n>1, a=gcd(n*(n + 1), a*(a + 1)), a=1); write("b062321.txt", n, " ", a) ) } \\ _Harry J. Smith_, Aug 04 2009

%K nonn

%O 1,2

%A _Reinhard Zumkeller_, Jul 05 2001

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 April 23 18:16 EDT 2024. Contains 371916 sequences. (Running on oeis4.)