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!)
A153038 Denominators of the fixed point a=(a_1,a_2,...) of the transformation x'= fix(x) where fix(x)_n = Sum_{d|n} d x_d, i.e., fix(a)=a. 4

%I #27 Oct 09 2018 15:11:57

%S 1,-1,-2,3,-4,2,-6,-21,16,4,-10,-6,-12,6,8,315,-16,-16,-18,-12,12,10,

%T -22,42,96,12,-416,-18,-28,-8,-30,-9765,20,16,24,48,-36,18,24,84,-40,

%U -12,-42,-30,-64,22,-46,-630,288,-96,32,-36,-52,416,40,126,36,28,-58,24,-60,30,-96,615195,48,-20,-66,-48,44,-24,-70,-336,-72,36

%N Denominators of the fixed point a=(a_1,a_2,...) of the transformation x'= fix(x) where fix(x)_n = Sum_{d|n} d x_d, i.e., fix(a)=a.

%C The absolute values are Pazderski's multiplicative psi(n). - _R. J. Mathar_, Apr 03 2012

%H Antti Karttunen, <a href="/A153038/b153038.txt">Table of n, a(n) for n = 1..8191</a>

%H M. Baake and N. Neumaerker, <a href="http://www.cs.uwaterloo.ca/journals/JIS/VOL12/Baake/baake7.html">A note on the relation between fixed point and orbit count sequences</a>, Journal of Integer Sequences (2009) 09.4.4.

%H G. Pazderski, <a href="http://dx.doi.org/10.1007/BF01240807">Die Ordnungen, zu denen nur Gruppen mit gegebener Eigenschaft gehoren</a>, Archiv math. 10 (1) (1959) 331.

%H Y. Puri and T. Ward, <a href="http://www.cs.uwaterloo.ca/journals/JIS/VOL4/WARD/short.html">Arithmetic and growth of periodic orbits</a>, Journal of Integer Sequences, 4 (2001), article 01.2.1.

%F For n with prime factorization n = p_1^{r_1}*...*p_s^{r_s} the n-th term is a(n) = Product_{k=1..s} Product_{j=1..r_k} (1 - p_k^j).

%F G.f.: The Dirichlet series for 1/a(n) is Product_{j>= 1} 1/zeta(s+j) = Product_{p prime} Product_{j>= 1} (1 - 1/p^(s+j)) where zeta(s) is Riemann's zeta function.

%p A153038 := proc(n)

%p local f,a,p,e;

%p if n = 1 then

%p 1;

%p else

%p a := 1 ;

%p for f in ifactors(n)[2] do

%p p := op(1,f) ;

%p e := op(2,f) ;

%p a := a*mul(1-p^s,s=1..e) ;

%p end do:

%p return a ;

%p end if;

%p end proc: # _R. J. Mathar_, Apr 03 2012

%t a[1] = 1; a[n_] := (x = 1; Do[p = f[[1]]; e = f[[2]]; x = x*Product[1 - p^s, {s, 1, e}], {f, FactorInteger[n]}]; x); Table[a[n], {n, 1, 46}] (* _Jean-François Alcover_, May 15 2012, after _R. J. Mathar_ *)

%o (PARI) a(n)=my(f=factor(n));prod(k=1,#f[,1],prod(j=1,f[k,2], 1-f[k,1]^j)) \\ _Charles R Greathouse IV_, Sep 18 2012

%K easy,eigen,frac,mult,sign

%O 1,3

%A Natascha Neumaerker (naneumae(AT)math.uni-bielefeld.de), Dec 17 2008

%E More terms from _Antti Karttunen_, Oct 09 2018

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 18 13:04 EDT 2024. Contains 374378 sequences. (Running on oeis4.)