login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A275630
a(n) = product of distinct primes dividing prime(n)^2 - 1.
2
3, 2, 6, 6, 30, 42, 6, 30, 66, 210, 30, 114, 210, 462, 138, 78, 870, 930, 1122, 210, 222, 390, 1722, 330, 42, 510, 1326, 318, 330, 798, 42, 4290, 2346, 4830, 1110, 570, 6162, 246, 3486, 7482, 2670, 2730, 570, 582, 462, 330, 11130, 1554, 12882, 13110, 2262, 3570, 330, 210, 258, 8646, 2010
OFFSET
1,1
LINKS
FORMULA
a(n) = A007947(A084920(n)). - Michel Marcus, Jan 30 2021
a(n) = A077063(n)*A077066(n)/2, for n > 1. - Amiram Eldar, Jan 30 2021
MATHEMATICA
a[n_] := Times @@ FactorInteger[Prime[n]^2 - 1][[;; , 1]]; Array[a, 60] (* Amiram Eldar, Jan 30 2021 *)
PROG
(PARI) a(n) = factorback(factorint(prime(n)^2-1)[, 1]); \\ Michel Marcus, Jan 30 2021
CROSSREFS
Subsequence of A007947.
Sequence in context: A225367 A283479 A087237 * A102004 A233208 A196518
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Aug 07 2016
STATUS
approved