A129527 a(2n) = a(n) + 2n, a(2n+1) = 2n + 1.
0, 1, 3, 3, 7, 5, 9, 7, 15, 9, 15, 11, 21, 13, 21, 15, 31, 17, 27, 19, 35, 21, 33, 23, 45, 25, 39, 27, 49, 29, 45, 31, 63, 33, 51, 35, 63, 37, 57, 39, 75, 41, 63, 43, 77, 45, 69, 47, 93, 49, 75, 51, 91, 53, 81, 55, 105, 57, 87, 59, 105, 61, 93, 63, 127, 65, 99, 67
Offset: 0
Links
- Robert Israel, Table of n, a(n) for n = 0..10000
- Cristina Ballantine and Mircea Merca, Plane Partitions and Divisors, Symmetry (2024), Vol. 16, Iss. 5. See page 3.
- Mircea Merca and Emil Simion, n-Color Partitions into Distinct Parts as Sums over Partitions, Symmetry (2023) Vol. 15, Iss. 11.
Programs
-
Maple
f:= proc(n) option remember; if n::odd then n else n + procname(n/2) fi end proc: f(0):= 0: seq(f(n),n=0..100); # Robert Israel, Dec 20 2015
-
Mathematica
a[n_] := a[n] = If[EvenQ@ n, a[n/2] + n, n]; {0}~Join~Array[a, 67] (* Michael De Vlieger, Jun 26 2017 *)
-
PARI
a(n)=if (n==0, 0, sum(k=0,valuation(n,2),n/2^k)); \\ corrected by Michel Marcus, Dec 22 2021
-
PARI
a(n)=if(n<2,return(n)); my(k=valuation(n,2)); 2*n-n>>k \\ Charles R Greathouse IV, Feb 09 2016
-
PARI
a(n)=sumdiv(n, d, eulerphi(2*d)) \\ Andrew Howroyd, Aug 07 2018
Formula
G.f.: Sum_{k>=0} x^(2^k)/(1-x^(2^k))^2.
Dirichlet g.f.: zeta(s-1)*2^s/(2^s-1). - Ralf Stephan, Jun 17 2007
G.f. satisfies g(x) = g(x^2) + x/(1-x)^2. - Robert Israel, Dec 20 2015
n <= a(n) <= 2n - 1 for n > 0. - Charles R Greathouse IV, Feb 09 2016
Conjecture: a(n) = 2*n-A000265(n) for n > 0. - Velin Yanev, Jun 23 2017. [Joerg Arndt, Jun 23 2017: For odd n the conjecture holds, for even n induction should work.
Andrey Zabolotskiy, Aug 03 2017: Confirm: induction works, the conjecture holds for all n.]
a(n) for n > 0 is multiplicative with a(2^e) = 2^(e+1)-1 and a(p^e) = p^e for prime p > 2 and e >= 0. - Werner Schulte, Jul 02 2018
Inverse Moebius transform of A062570. - Andrew Howroyd, Aug 07 2018
Sum_{k=1..n} a(k) ~ 2*n^2/3. - Vaclav Kotesovec, Jun 11 2020
Comments