|
Search: id:A162728
|
|
|
| A162728 |
|
G.f.: x/(1-x) = Sum_{n>=1} a(n)*log(1+x^n)/n. |
|
+0 2
|
|
| 1, 3, 2, 8, 4, 6, 6, 20, 6, 12, 10, 16, 12, 18, 8, 48, 16, 18, 18, 32, 12, 30, 22, 40, 20, 36, 18, 48, 28, 24, 30, 112, 20, 48, 24, 48, 36, 54, 24, 80, 40, 36, 42, 80, 24, 66, 46, 96, 42, 60, 32, 96, 52, 54, 40, 120, 36, 84, 58, 64, 60, 90, 36, 256, 48, 60, 66, 128, 44, 72, 70
(list; graph; listen)
|
|
|
OFFSET
|
1,2
|
|
|
FORMULA
|
a(2n-1) = phi(2n-1); a(2n) = phi(2n)*A090739(n), where A090739(n) = exponent of 2 in 3^(2n)-1.
Inverse Mobius transform of A091512, where A091512(n) = exponent of 2 in (2n)^n.
Multiplicative: a(m,n) = a(m)*a(n) when gcd(m,n)=1, with a(p) = p-1 for odd prime p and a(2)=3.
G.f.: x/(1-x)^2 = Sum_{n>=1} a(n)*x^n/(1+x^n). [From Paul D. Hanna (pauldhanna(AT)juno.com), Jul 12 2009]
|
|
EXAMPLE
|
x/(1-x) = log(1+x) + 3*log(1+x^2)/2 + 2*log(1+x^3)/3 + 8*log(1+x^4)/4 + 4*log(1+x^5)/5 + 6*log(1+x^6)/6 + 6*log(1+x^7)/7 + 20*log(1+x^8)/8 +...
|
|
PROGRAM
|
(PARI) /* As the inverse Mobius transform of A091512: */
{a(n)=sumdiv(n, d, moebius(n/d)*valuation((2*d)^d, 2))}
(PARI) /* From a(2n-1)=phi(2n-1); a(2n)=phi(2n)*A090739(n), we get: */
{a(n)=if(n%2==1, eulerphi(n), eulerphi(n)*valuation(3^n-1, 2))}
(PARI) /* From x/(1-x) = Sum_{n>=1} a(n)*log(1+x^n)/n, we get: */
{a(n)=local(A=[1]); for(k=1, n, A=concat(A, 0); A[ #A]=#A*(1-polcoeff(sum(m=1, #A, A[m]/m*log(1+x^m +x*O(x^#A)) ), #A))); A[n]}
|
|
CROSSREFS
|
Cf. A090739, A091512, A000010 (Euler phi).
Sequence in context: A135852 A143515 A082333 this_sequence A127300 A129199 A097018
Adjacent sequences: A162725 A162726 A162727 this_sequence A162729 A162730 A162731
|
|
KEYWORD
|
mult,nonn
|
|
AUTHOR
|
Paul D. Hanna (pauldhanna(AT)juno.com), Jul 12 2009
|
|
|
Search completed in 0.002 seconds
|