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.

A345945 Numbers k that have such a proper divisor d for which A002034(d) = A002034(k).

This page as a plain text file.
%I A345945 #10 Jul 04 2021 15:55:04
%S A345945 6,8,10,12,14,15,18,20,21,22,24,26,28,30,33,34,35,36,38,39,40,42,44,
%T A345945 45,46,48,50,51,52,54,55,56,57,58,60,62,63,64,65,66,68,69,70,72,74,75,
%U A345945 76,77,78,80,81,82,84,85,86,87,88,90,91,92,93,94,95,96,98,99,100,102,104,105,106,108,110,111,112,114,115,116,117
%N A345945 Numbers k that have such a proper divisor d for which A002034(d) = A002034(k).
%H A345945 <a href="/index/Fa#factorial">Index entries for sequences related to factorial numbers</a>
%e A345945 21 = 3*7 is present because A002034(21) = 7 = A002034(7).
%o A345945 (PARI)
%o A345945 A002034(n) = if(1==n,n,my(s=factor(n)[, 1], k=s[#s], f=Mod(k!, n)); while(f, f*=k++); (k)); \\ After code in A002034.
%o A345945 A345950(n) = { my(x=A002034(n)); fordiv(n,d,if(A002034(d)==x,return(d==n))); };
%o A345945 isA345945(n) = !A345950(n);
%Y A345945 Cf. A002034, A345944 (complement).
%Y A345945 Positions of terms > 1 in A345935.
%Y A345945 Union of A024619 and A345946.
%Y A345945 Cf. also A344882.
%K A345945 nonn
%O A345945 1,1
%A A345945 _Antti Karttunen_, Jul 04 2021