OFFSET
1,6
COMMENTS
As mentioned in A102084, the anti-derivatives of even numbers are overwhelmingly semiprimes of the form n^2 - k^2. This sequence excludes those semiprimes. The upper bound of a(n) appears to be (n/2)^(4/3), which is attained when 2n = 4p^3 for primes p>3.
LINKS
T. D. Noe, Table of n, a(n) for n = 1..10000
MATHEMATICA
dn[0] = 0; dn[1] = 0; dn[n_] := Module[{f = Transpose[FactorInteger[n]]}, If[PrimeQ[n], 1, Plus @@ (n*f[[2]]/f[[1]])]]; nn = 200; d = Array[dn, (nn/2)^2]; Table[s1 = Flatten[Position[d, n]]; s2 = Select[s1, ! IntegerQ[Sqrt[(n/2)^2 - #]] &]; If[s2 == {}, 0, s2[[-1]]], {n, 2, nn, 2}]
CROSSREFS
KEYWORD
nonn
AUTHOR
T. D. Noe, Apr 27 2011
STATUS
approved