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!)
A129294 Number of divisors of n^3 - 1 that are not greater than n. 5
1, 2, 2, 3, 2, 4, 2, 5, 3, 5, 2, 7, 2, 4, 7, 5, 3, 6, 2, 6, 6, 6, 2, 13, 4, 4, 4, 8, 4, 10, 3, 6, 5, 6, 5, 14, 2, 6, 5, 8, 3, 10, 3, 8, 10, 5, 3, 16, 3, 9, 5, 9, 2, 11, 5, 8, 7, 4, 3, 20, 2, 5, 9, 11, 4, 18, 4, 6, 5, 8, 3, 14, 5, 4, 8, 6, 4, 17, 2, 21, 5, 6, 3, 16, 6, 10, 8, 8, 2, 14, 5, 9, 7, 6, 5, 16 (list; graph; refs; listen; history; text; internal format)
OFFSET
2,2
COMMENTS
a(n) = #{d: d<=n and A068601(n) mod d = 0};
a(n)>1 for n>2, see A129295 for m such that a(m)=2: a(A129295(n))=2.
LINKS
EXAMPLE
a(100) = #{1,3,7,9,11,13,21,27,33,37,39,63,77,91,99} = 15.
MATHEMATICA
Table[Count[Divisors[n^3-1], _?(#<n+1&)], {n, 2, 100}] (* Harvey P. Dale, Sep 27 2018 *)
PROG
(PARI) a(n) = sumdiv(n^3-1, d, d <= n); \\ Michel Marcus, Aug 01 2018
CROSSREFS
Sequence in context: A370816 A305813 A319355 * A363719 A363723 A350126
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, Apr 09 2007
EXTENSIONS
a(1)=1 removed by Michel Marcus, Aug 01 2018
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 19 19:02 EDT 2024. Contains 371798 sequences. (Running on oeis4.)