A287472
Triangular numbers k such that phi(k) is also a triangular number, where phi(k) is the Euler totient function (A000010).
Original entry on oeis.org
1, 231, 1035, 6786, 190036, 193131, 766941, 1237951, 1348903, 3069003, 3396921, 8034036, 9152781, 11875501, 15694003, 28001386, 29587278, 35149920, 61643856, 63196903, 130758706, 178161126, 198214005, 227751153, 268111746, 339210081, 402102261, 654224878
Offset: 1
231 = 21*22/2 is triangular, phi(231)=120=15*16/2 is also triangular, thus 231 is in the sequence.
-
triQ[n_] := IntegerQ@Sqrt[8n+1]; Select[Accumulate[Range[1000]], triQ[EulerPhi[#]]&]
-
isok(n) = ispolygonal(n, 3) && ispolygonal(eulerphi(n), 3); \\ Michel Marcus, May 25 2017
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
780 is in the sequence since 780 = 39*40/2 is triangular and psi(780) = 2016 = 63*64/2 is also triangular.
-
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[#]]&]
A323747
Smallest triangular number whose number of divisors is the n-th triangular number, or 0 if no such number exists.
Original entry on oeis.org
1, 0, 28, 496, 1631432881, 0, 8256, 2016, 41616, 0, 169878528, 2717872128, 0
Offset: 1
a(1) = 1 because 1 is the only triangular number having A000217(1)=1 divisors.
a(2) = 0 because no triangular number has A000217(2)=3 divisors. (Each number with 3 divisors is the square of a prime, and no such number can be of the form k*(k+1)/2.)
a(3) = 28 because 28 = 7*(7+1)/2 = 2^2 * 7 is the smallest triangular number with A000217(3)=6 divisors.
a(5) = 1631432881 = 13^4 * 239^2 is the only triangular with A000217(5)=15 divisors.
Showing 1-3 of 3 results.
Comments