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!)
A226957 Number of prime divisors p of 2n such that p-1 divides n. 2
1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 2, 1, 2, 1, 1, 1, 2, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 2, 1, 1, 1, 2, 1, 3, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 2, 1, 2, 1, 1, 1, 3, 1, 1, 1, 1, 1, 2 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,6
LINKS
Charles R Greathouse IV, Table of n, a(n) for n = 1..10000
FORMULA
Asymptotic mean: Limit_{m->oo} (1/m) * Sum_{k=1..m} a(k) = 1/2 + Sum_{p prime} 1/(p*(p-1)) = 1/2 + A136141 = 1.273156669... . - Amiram Eldar, May 17 2024
MATHEMATICA
fa = FactorInteger; a[n_] := Sum[If[IntegerQ[n/(fa[2 n][[i, 1]]-1)], 1, 0], {i, Length[fa[2 n]]}]; Table[a[n], {n, 1, 100}]
PROG
(PARI) a(n)=my(f=factor(2*n)[, 1]); sum(i=1, #f, n%(f[i]-1)==0) \\ Charles R Greathouse IV, Jun 26 2013
CROSSREFS
Cf. A136141.
Sequence in context: A347447 A107577 A073700 * A108775 A300826 A373126
KEYWORD
nonn,easy
AUTHOR
EXTENSIONS
Erroneous a(87) added by T. D. Noe, corrected by Charles R Greathouse IV, Jun 26 2013
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 September 3 19:32 EDT 2024. Contains 375674 sequences. (Running on oeis4.)