A248139 Least positive integer m such that m + n divides f(m) + f(n), where f(.) is given by A000172.
1, 1, 25, 6, 14, 4, 13, 49, 19, 10, 2, 56, 2, 5, 6, 5, 27, 61, 9, 33, 23, 53, 21, 15, 3, 24, 11, 58, 39, 118, 3, 1598, 20, 40, 4, 2, 58, 26, 29, 17, 47, 34, 4, 31, 43, 163, 41, 25, 8, 26, 67, 40, 21, 214, 535, 12, 7, 22, 164, 74
Offset: 1
Keywords
Examples
a(5) = 14 since 5 + 14 = 19 divides f(5) + f(14) = 2252 + 112738423360 = 112738425612 = 19*5933601348.
Links
- Zhi-Wei Sun, Table of n, a(n) for n = 1..10000
Crossrefs
Programs
-
Mathematica
f[n_]:=Sum[Binomial[n,k]^3,{k,0,n}] Do[m=1; Label[aa]; If[Mod[f[m]+f[n], m+n]==0, Print[n, " ", m]; Goto[bb]]; m=m+1; Goto[aa]; Label[bb]; Continue, {n, 1, 60}]
Comments