A342969 Numbers m such that both m^2-1 and m^2 are refactorable numbers (A033950).
3, 39, 225, 249, 321, 447, 471, 519, 681, 831, 921, 993, 1119, 1191, 1473, 1641, 1671, 1857, 1929, 1983, 2361, 2391, 2463, 2625, 2631, 2913, 3321, 3369, 3561, 3591, 3777, 3807, 3831, 3903, 4119, 4281, 4287, 4359, 4545, 4569, 4791, 5001, 5025, 5079, 5241, 5481
Offset: 1
Examples
39 is a term since 39^2-1 = 1520 is divisible by d(1520) = 20 and 39^2 = 1521 is divisible by d(1521) = 9.
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000 (terms 1..3110 from Jianing Song)
- Joshua Zelinsky, Tau Numbers: A Partial Proof of a Conjecture and Other Results, Journal of Integer Sequences, Vol. 5 (2002), Article 02.2.8.
Programs
-
Mathematica
refQ[n_] := Divisible[n, DivisorSigma[0, n]]; Select[Range[6000], And @@ refQ /@ (#^2 - {1, 0}) &] (* Amiram Eldar, Feb 03 2025 *)
-
PARI
isrefac(n) = ! (n % numdiv(n)); isA342969(n) = (n>1) && isrefac(n^2-1) && isrefac(n^2)
Comments