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.

A324895 Largest proper divisor of A276086(n); a(0) = 1.

This page as a plain text file.
%I A324895 #12 Mar 31 2019 00:17:11
%S A324895 1,1,1,3,3,9,1,5,5,15,15,45,5,25,25,75,75,225,25,125,125,375,375,1125,
%T A324895 125,625,625,1875,1875,5625,1,7,7,21,21,63,7,35,35,105,105,315,35,175,
%U A324895 175,525,525,1575,175,875,875,2625,2625,7875,875,4375,4375,13125,13125,39375,7,49,49,147,147,441,49,245,245,735,735,2205,245,1225,1225
%N A324895 Largest proper divisor of A276086(n); a(0) = 1.
%H A324895 Antti Karttunen, <a href="/A324895/b324895.txt">Table of n, a(n) for n = 0..30030</a>
%H A324895 <a href="/index/Pri#primorialbase">Index entries for sequences related to primorial base</a>
%H A324895 <a href="/index/Pri#primorial_numbers">Index entries for sequences related to primorial numbers</a>
%F A324895 a(n) = A032742(A276086(n)).
%F A324895 For n >= 0, a(A002110(n)) = 1.
%F A324895 For n >= 1, a(n) = A276086(n) / A053669(n) = A276086(A276151(n)).
%F A324895 For n >= 1, A276085(a(n)) = A276151(n).
%F A324895 For n >= 1, a(A108951(n)) = A324896(n).
%o A324895 (PARI)
%o A324895 A032742(n) = if(1==n,n,n/vecmin(factor(n)[,1]));
%o A324895 A276086(n) = { my(i=0,m=1,pr=1,nextpr); while((n>0),i=i+1; nextpr = prime(i)*pr; if((n%nextpr),m*=(prime(i)^((n%nextpr)/pr));n-=(n%nextpr));pr=nextpr); m; };
%o A324895 A324895(n) = A032742(A276086(n));
%Y A324895 Cf. A002110, A032742, A053669, A276151, A276085, A276086, A324896.
%K A324895 nonn
%O A324895 0,4
%A A324895 _Antti Karttunen_, Mar 30 2019