A292064 Triangular numbers k such that psi(k) is a square, where psi(k) is the Dedekind psi function (A001615).
1, 3, 66, 210, 276, 1128, 2346, 2556, 4278, 5778, 7140, 7750, 7875, 11781, 13041, 18336, 22578, 27966, 28920, 31878, 32131, 32640, 35511, 51681, 70125, 73536, 79800, 89676, 93096, 100128, 102378, 122760, 139128, 169653, 173755, 177906, 209628, 223446, 253116
Offset: 1
Keywords
Examples
66 is in the sequence since 66 = 11*12/2 is triangular, and psi(66) = 144 = 12^2 is square.
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000
Programs
-
Mathematica
psi[n_] := If[n<1, 0, n*Sum[MoebiusMu[d]^2/d, {d, Divisors @ n}]]; Select[Accumulate[Range[1000]], IntegerQ[Sqrt[psi[#]]]&]
Comments