login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A190612 Numbers k such that (tau(k-1) + tau(k+1))/tau(k) is an integer, where tau(k)=A000005(k). 2
6, 7, 11, 13, 19, 20, 23, 25, 28, 29, 31, 32, 34, 39, 41, 43, 46, 47, 51, 52, 53, 55, 56, 57, 59, 61, 62, 67, 68, 71, 73, 74, 79, 83, 85, 86, 87, 89, 94, 95, 97, 103, 107, 109, 113, 119, 127, 129, 131, 133, 134, 137, 139, 141, 142, 149, 151, 152, 155, 157 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
6 is a term because (tau(5) + tau(7))/tau(6) = 4;
7 is a term because (tau(6) + tau(8))/tau(7) = 2;
11 is a term because (tau(10) + tau(12)/tau(11) = 5;
13 is a term because (tau(12) + tau(14))/tau(13) = 5.
MAPLE
with(numtheory): A190612 := proc(n) option remember: local k: if(n=1)then return 6:fi: for k from procname(n-1)+1 do if(tau(k-1)+tau(k+1) mod tau(k) = 0)then return k: fi: od: end: seq(A190612(n), n=1..70); # Nathaniel Johnston, May 14 2011
MATHEMATICA
Select[Range[200], IntegerQ[(DivisorSigma[0, #-1] + DivisorSigma[0, #+1]) / DivisorSigma[0, #]] &] (* Vaclav Kotesovec, Feb 14 2019 *)
CROSSREFS
Cf. A000005 (number of divisors of n), A074757, A090502.
Sequence in context: A156793 A081715 A054504 * A270431 A315832 A224856
KEYWORD
nonn
AUTHOR
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 07:56 EDT 2024. Contains 371905 sequences. (Running on oeis4.)