cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A292063 Triangular numbers n such that psi(n) is also a triangular number, where psi is the Dedekind psi function (A001615).

Original entry on oeis.org

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

Views

Author

Amiram Eldar, Sep 08 2017

Keywords

Comments

The indices of these triangular numbers are 1, 39, 74, 100, 974, 1167, 1858, 3251, 3438, 3634, 5886, 6574, 7456, 9489, ...
The indices of the triangular psi values are 1, 63, 95, 135, 1280, 1664, 2015, 4607, 4095, 4095, 7424, 7424, 9152, 12543, ...

Examples

			780 is in the sequence since 780 = 39*40/2 is triangular and psi(780) = 2016 = 63*64/2 is also triangular.
		

Crossrefs

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