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.
%I A068346 #53 Oct 27 2023 19:47:10 %S A068346 0,0,0,0,4,0,1,0,16,5,1,0,32,0,6,12,80,0,10,0,44,7,1,0,48,7,8,27,80,0, %T A068346 1,0,176,9,1,16,92,0,10,32,72,0,1,0,112,16,10,0,240,9,39,24,92,0,108, %U A068346 32,96,13,1,0,96,0,14,20,640,21,1,0,156,15,1,0,220,0,16,16,176,21,1,0,368,216 %N A068346 a(n) = n'' = second arithmetic derivative of n. %C A068346 a(2p) = 1 for any prime p implies p,p+2 form a twin prime pair. - _Kevin J. Gomez_, Aug 29 2017 %C A068346 Indices of records > 0 appear to all belong to A116882. - _Bill McEachen_, Oct 16 2023 %H A068346 Alois P. Heinz, <a href="/A068346/b068346.txt">Table of n, a(n) for n = 0..10000</a> (first 2000 terms from T. D. Noe) %H A068346 Victor Ufnarovski and Bo Ã…hlander, <a href="http://www.cs.uwaterloo.ca/journals/JIS/VOL6/Ufnarovski/ufnarovski.html">How to Differentiate a Number</a>, J. Integer Seqs., Vol. 6, 2003. %F A068346 a(n) = A003415(A003415(n)). %F A068346 a(A000040(n)) = 0; a(A157037(n)) = 1. - _Reinhard Zumkeller_, Feb 22 2009 %p A068346 d:= n-> n*add(i[2]/i[1], i=ifactors(n)[2]): %p A068346 a:= n-> d(d(n)); %p A068346 seq(a(n), n=0..100); # _Alois P. Heinz_, Aug 29 2017 %t A068346 dn[0]=0; dn[1]=0; dn[n_]:=Module[{f=Transpose[FactorInteger[n]]}, If[PrimeQ[n], 1, Plus@@(n*f[[2]]/f[[1]])]]; Table[dn[dn[n]], {n, 100}] (T. D. Noe) %t A068346 f[n_] := If[ Abs@ n < 2, 0, n*Total[#2/#1 & @@@ FactorInteger[Abs@ n]]]; Table[ f[ f[ n]], {n, 81}] (* _Robert G. Wilson v_, May 12 2012 *) %o A068346 (Haskell) %o A068346 a068346 = a003415 . a003415 -- _Reinhard Zumkeller_, Nov 10 2013 %Y A068346 Cf. A003415 (arithmetic derivative of n), A099306 (third arithmetic derivative of n). %Y A068346 Column k=2 of A258651. %K A068346 nonn,look %O A068346 0,5 %A A068346 _Reinhard Zumkeller_, Feb 28 2002 %E A068346 More terms from _T. D. Noe_, Oct 12 2004