A292063 Triangular numbers n such that psi(n) is also a triangular number, where psi is the Dedekind psi function (A001615).
1, 780, 2775, 5050, 474825, 681528, 1727011, 5286126, 5911641, 6604795, 17325441, 21612025, 27799696, 45025305, 386767578, 1538599128, 2086160121, 3679490220, 5718242211, 7092226351, 8019794628, 16505718895, 36604197735, 55541611986, 56693041356, 89369984476
Offset: 1
Keywords
Examples
780 is in the sequence since 780 = 39*40/2 is triangular and psi(780) = 2016 = 63*64/2 is also triangular.
Links
- Giovanni Resta, Table of n, a(n) for n = 1..100
Programs
-
Mathematica
psi[n_] := If[n<1, 0, n*Sum[MoebiusMu[d]^2/d, {d, Divisors @ n}]]; triQ[n_] := IntegerQ@ Sqrt[8n+1]; Select[Accumulate[Range[1000]], triQ[psi[#]]&]
Extensions
a(18)-a(26) from Giovanni Resta, Sep 11 2017
Comments