OFFSET
1,1
COMMENTS
If a child is born to an n-year-old parent, this is the number of times the age of the parent will be a multiple of the age of the child. E.g., if n = 27, this will happen at the ages (28, 1), (29, 1),(30, 2), (30, 3), (32, 4), (35, 7), (42, 14), (36, 9), (54, 27), (56, 28). - Alexander Piperski, Sep 10 2018
LINKS
Antti Karttunen, Table of n, a(n) for n = 1..20000
FORMULA
a(n) = A346562(n+1,n). - Omar E. Pol, Jul 23 2021
MATHEMATICA
Total /@ Partition[Array[DivisorSigma[0, #] &, 85], 2, 1] (* Michael De Vlieger, Sep 18 2018 *)
PROG
(PARI) for(i=1, 60, print1(", "sigma(i, 0)+sigma(i+1, 0)))
(PARI) A092405(n) = (numdiv(n)+numdiv(1+n)); \\ Antti Karttunen, Oct 07 2017
CROSSREFS
KEYWORD
nonn
AUTHOR
Jon Perry, Mar 22 2004
EXTENSIONS
Extended by Ray Chandler, Mar 05 2010
STATUS
approved
