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.

A238161 Greatest common divisor of the prime factors of n, each increased by 1.

This page as a plain text file.
%I A238161 #8 Jun 02 2025 09:21:10
%S A238161 3,4,3,6,1,8,3,4,3,12,1,14,1,2,3,18,1,20,3,4,3,24,1,6,1,4,1,30,1,32,3,
%T A238161 4,3,2,1,38,1,2,3,42,1,44,3,2,3,48,1,8,3,2,1,54,1,6,1,4,3,60,1,62,1,4,
%U A238161 3,2,1,68,3,4,1,72,1,74,1,2,1,4,1,80,3,4,3,84,1,6,1,2,3,90,1,2,3,4,3,2,1,98,1,4,3
%N A238161 Greatest common divisor of the prime factors of n, each increased by 1.
%e A238161 10 has prime factors 2 and 5, which become 3 and 6 when respectively increased by 1, and gcd(3, 6) = 3. Therefore, a(10) = 3.
%t A238161 Table[Apply[GCD, (Transpose[FactorInteger[n]][[1]] + 1)], {n, 2, 100}]
%K A238161 nonn,easy
%O A238161 2,1
%A A238161 _Joseph L. Pe_, Feb 18 2014