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.

A351950 Arithmetic derivative of the factorial base exp-function: a(n) = A003415(A276076(n)).

This page as a plain text file.
%I A351950 #10 Apr 02 2022 10:32:28
%S A351950 0,1,1,5,6,21,1,7,8,31,39,123,10,45,55,185,240,705,75,275,350,1075,
%T A351950 1425,3975,1,9,10,41,51,165,12,59,71,247,318,951,95,365,460,1445,1905,
%U A351950 5385,650,2175,2825,8275,11100,30075,14,77,91,329,420,1281,119,483,602,1939,2541,7287,840,2905,3745,11165,14910,40845
%N A351950 Arithmetic derivative of the factorial base exp-function: a(n) = A003415(A276076(n)).
%H A351950 Antti Karttunen, <a href="/A351950/b351950.txt">Table of n, a(n) for n = 0..10080</a>
%H A351950 <a href="/index/Fa#facbase">Index entries for sequences related to factorial base representation</a>
%F A351950 a(n) = A003415(A276076(n)).
%F A351950 a(n) = A327860(A351576(n)).
%o A351950 (PARI)
%o A351950 A003415(n) = if(n<=1, 0, my(f=factor(n)); n*sum(i=1, #f~, f[i, 2]/f[i, 1]));
%o A351950 A276076(n) = { my(i=0,m=1,f=1,nextf); while((n>0),i=i+1; nextf = (i+1)*f; if((n%nextf),m*=(prime(i)^((n%nextf)/f));n-=(n%nextf));f=nextf); m; };
%o A351950 A351950(n) = A003415(A276076(n));
%Y A351950 Cf. A003415, A276076, A351576, A351952.
%Y A351950 Differs from a similarly defined A327860 for the first time at n=24.
%Y A351950 Coincides with A351951 on n given by A059590.
%K A351950 nonn,base
%O A351950 0,4
%A A351950 _Antti Karttunen_, Apr 01 2022