login

Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.

A369936
a(n) = sqrt(A369935(n)).
3
0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
OFFSET
1,12
LINKS
FORMULA
Asymptotic mean: Limit_{m->oo} (1/m) * Sum_{k=1..m} a(k) = Sum_{k>=1} (k * (d(k) - d(k-1)) / A357016 = 1.05307232234978965366..., where d(k) = Product_{p prime} (1 - 1/p^2 + Sum_{i=2..k} (1/p^(i^2)-1/p^(i^2+1))) for k >= 1, and d(0) = 0.
MATHEMATICA
squareQ[n_] := IntegerQ[Sqrt[n]]; f[n_] := Module[{e = FactorInteger[n][[;; , 2]]}, If[AllTrue[e, squareQ], Sqrt[Max @@ e], Nothing]]; f[1] = 0; Array[f, 150]
PROG
(PARI) lista(kmax) = {my(e, q); print1(0, ", "); for(k = 2, kmax, e = factor(k)[, 2]; q = 1; for(i = 1, #e, if(!issquare(e[i]), q = 0; break)); if(q, print1(sqrtint(vecmax(e)), ", "))); }
CROSSREFS
Sequence in context: A349542 A087102 A194309 * A374326 A318829 A113515
KEYWORD
nonn,easy
AUTHOR
Amiram Eldar, Feb 06 2024
STATUS
approved