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!)
A007896 Psi_c(n), where Product_{k>1} 1/(1-1/k^s)^phi(k) = Sum_{k>0} psi_c(k)/k^s. 10
1, 1, 2, 3, 4, 4, 6, 7, 9, 8, 10, 12, 12, 12, 16, 18, 16, 19, 18, 24, 24, 20, 22, 32, 30, 24, 34, 36, 28, 40, 30, 42, 40, 32, 48, 60, 36, 36, 48, 64, 40, 60, 42, 60, 76, 44, 46, 86, 63, 66, 64, 72, 52, 82, 80, 96, 72, 56, 58, 128, 60, 60, 114, 104, 96, 100 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
Phi(k) is the Euler totient function A000010.
REFERENCES
Felix Weinstein, The Fibonacci Partitions, preprint, 1995
LINKS
F. V. Weinstein, Notes on Fibonacci partitions, arXiv:math/0307150 [math.NT], 2003-2015.
EXAMPLE
The left-hand side (a Dirichlet generating function) is
1/((1-1/2^s)*(1-1/3^s)^2*(1-1/4^s)^2*(1-1/5^s)^4*(1-1/6^s)^2*(1-1/7^s)^6* ...)
= 1 + 1/2^s + 2/3^s + 3/4^s + 4/5^s + 4/6^s + 6/7^s + 7/8^s + 9/9^s + ...,
whose coefficients are 1, 1, 2, 3, 4, 4, 6, 7, 9, ... . - N. J. A. Sloane, May 26 2014
G.f. = x + x^2 + 2*x^3 + 3*x^4 + 4*x^5 + 4*x^6 + 6*x^7 + 7*x^8 + 9*x^9 + ...
MATHEMATICA
dircon[v_, w_] := Module[{lv = Length[v], lw = Length[w], fv, fw}, fv[n_] := If[n <= lv, v[[n]], 0]; fw[n_] := If[n <= lw, w[[n]], 0]; Table[ DirichletConvolve[fv[n], fw[n], n, m], {m, Min[lv, lw]}]];
a[n_] := Module[{A, v, w, m}, If[n<1, 0, v = Table[Boole[k == 1], {k, n}]; For[k = 2, k <= n, k++, m = Length[IntegerDigits[n, k]] - 1; A = (1 - x)^-EulerPhi[k] + x*O[x]^m // Normal; w = Table[0, {n}]; For[i = 0, i <= m, i++, w[[k^i]] = Coefficient[A, x, i]]; v = dircon[v, w]]; v[[n]]]];
Array[a, 66] (* Jean-François Alcover, Nov 12 2018, from PARI *)
PROG
(PARI) {a(n) = my(A, v, w, m); if( n<1, 0, v = vector(n, k, k==1); for(k=2, n, m = #digits(n, k) - 1; A = (1 - x)^ -eulerphi(k) + x * O(x^m); w = vector(n); for(i=0, m, w[k^i] = polcoeff(A, i)); v = dirmul(v, w)); v[n])}; /* Michael Somos, May 26 2014 */
CROSSREFS
Sequence in context: A290083 A248517 A364031 * A351006 A325682 A241088
Adjacent sequences: A007893 A007894 A007895 * A007897 A007898 A007899
KEYWORD
nonn
AUTHOR
Felix Weinstein (wain(AT)ana.unibe.ch)
EXTENSIONS
Definition corrected by Felix Weinstein (wain(AT)ana.unibe.ch), May 14 2014
STATUS
approved



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 July 21 12:49 EDT 2024. Contains 374474 sequences. (Running on oeis4.)