OFFSET
1,3
COMMENTS
Same as A123168 (without the initial 0) interleaved with the natural numbers. - Wesley Ivan Hurt, Apr 01 2022
LINKS
Charles R Greathouse IV, Table of n, a(n) for n = 1..10000
Index entries for linear recurrences with constant coefficients, signature (0,0,0,2,0,0,0,-1).
FORMULA
a(4n+1) = 4n+1, a(4n+2) = 2n+1, a(4n+3) = 8n+6, a(4n+4) = 2n+2. - Ralf Stephan, Jun 10 2005
G.f.: x*(1 + x + 6*x^2 + 2*x^3 + 3*x^4 + x^5 + 2*x^6) / ( (x-1)^2*(1+x)^2*(x^2+1)^2 ). - R. J. Mathar, Jul 25 2013
From Wesley Ivan Hurt, Apr 01 2022: (Start)
a(n) = n*(2-(-1)^n-sin(n*Pi/2))/2.
a(n) = 2*a(n-4) - a(n-8). (End)
MAPLE
MATHEMATICA
Table[GCD[2n, (n(n+1))/2], {n, 120}] (* or *) LinearRecurrence[ {0, 0, 0, 2, 0, 0, 0, -1}, {1, 1, 6, 2, 5, 3, 14, 4}, 120] (* Harvey P. Dale, Apr 09 2018 *)
PROG
(PARI) j=[]; for(n=1, 150, j=concat(j, gcd(2*n, n*(n+1)/2))); j
(PARI) a(n)=if(n%2, n*if(n%4>2, 2, 1), n/2) \\ Charles R Greathouse IV, Jul 07 2013
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Jason Earls, Jul 20 2001
STATUS
approved