The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A008833 Largest square dividing n. 106

%I #75 Jul 12 2022 16:13:51

%S 1,1,1,4,1,1,1,4,9,1,1,4,1,1,1,16,1,9,1,4,1,1,1,4,25,1,9,4,1,1,1,16,1,

%T 1,1,36,1,1,1,4,1,1,1,4,9,1,1,16,49,25,1,4,1,9,1,4,1,1,1,4,1,1,9,64,1,

%U 1,1,4,1,1,1,36,1,1,25,4,1,1,1,16,81,1,1,4,1,1,1,4,1,9,1,4,1,1,1,16,1

%N Largest square dividing n.

%C The Dirichlet generating function of the arithmetic function of the largest t-th power dividing n is zeta(s)*zeta(t*s-t)/zeta(s*t), here with t=2 and in A008834 and A008835 with t=3 and t=4, respectively. - _R. J. Mathar_, Feb 19 2011

%H Daniel Forgues, <a href="/A008833/b008833.txt">Table of n, a(n) for n = 1..100000</a>

%H Henry Bottomley, <a href="http://fs.gallup.unm.edu/Bottomley-Sm-Mult-Functions.htm">Some Smarandache-type multiplicative sequences</a>

%H R. J. Mathar, <a href="http://arxiv.org/abs/1106.4038">Survey of Dirichlet series of multiplicative arithmetic functions</a> arXiv:1106.4038 [math.NT], 2011-2012, Remark 16.

%H Andrew Reiter, <a href="http://www.cw-complex.com/modNspirals/">On (mod n) spirals</a>, 2014, see also posting to Number Theory Mailing List, Mar 23 2014.

%H Eric Weisstein's World of Mathematics, <a href="http://mathworld.wolfram.com/SquarePart.html">Square part</a>

%F a(n) = A000188(n)^2 = n/A007913(n). Cf. A019554.

%F Multiplicative with a(p^e) = p^(2[e/2]). - _David W. Wilson_, Aug 01 2001

%F Dirichlet g.f.: zeta(s)*zeta(2s-2)/zeta(2s). - _R. J. Mathar_, Oct 31 2011

%F a(n) = A005563(n-1) / A068310(n) for n > 1. - _Reinhard Zumkeller_, Nov 26 2011

%F Sum_{k=1..n} a(k) ~ Zeta(3/2) * n^(3/2) / (3*Zeta(3)). - _Vaclav Kotesovec_, Feb 01 2019

%F a(A059897(n,k)) = A059897(a(n), a(k)). - _Peter Munn_, Nov 30 2019

%p A008833 := proc(n)

%p expand(numtheory:-nthpow(n,2)) ;

%p end proc:

%p seq(A008833(n), n=1..100) ;

%t a[n_] := First[ Select[ Reverse[ Divisors[n]], IntegerQ[Sqrt[#]]&, 1]]; Table[a[n], {n, 1, 100}] (* _Jean-François Alcover_, Dec 12 2011 *)

%t f[p_, e_] := p^(2*Floor[e/2]); a[n_] := Times @@ (f @@@ FactorInteger[n]); Array[a, 100] (* _Amiram Eldar_, Jul 07 2020 *)

%o (PARI) A008833(n)=n/core(n) \\ _Michael B. Porter_, Oct 17 2009

%o (Haskell)

%o a008833 n = head $ filter ((== 0) . (mod n)) $

%o reverse $ takeWhile (<= n) $ tail a000290_list

%o -- _Reinhard Zumkeller_, Nov 13 2011

%o (Python)

%o from sympy.ntheory.factor_ import core

%o def A008833(n): return n//core(n) # _Chai Wah Wu_, Dec 30 2021

%Y Cf. A000188, A005563, A007913, A019554, A059897, A068310.

%K nonn,easy,mult

%O 1,4

%A _N. J. A. Sloane_.

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 May 16 20:35 EDT 2024. Contains 372555 sequences. (Running on oeis4.)