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!)
A217984 Number of divisors of n^3 + 1 of the form a^3 + 1. 1
1, 2, 2, 3, 2, 4, 2, 3, 3, 3, 2, 4, 2, 3, 3, 3, 2, 5, 2, 4, 3, 3, 2, 4, 2, 3, 4, 4, 2, 4, 2, 4, 3, 3, 2, 4, 2, 3, 3, 3, 2, 5, 2, 3, 3, 3, 2, 6, 2, 4, 3, 3, 2, 4, 2, 4, 3, 3, 2, 6, 2, 4, 3, 3, 3, 4, 2, 3, 4, 5, 2, 4, 2, 3, 3, 5, 2, 4, 2, 3, 3, 3, 2, 6, 2, 3, 3 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
EXAMPLE
a(0) = 1: 1.
a(1) = 2: 1, 2.
a(2) = 2: 1, 9.
a(3) = 3: 1, 2, 28.
a(4) = 2: 1, 65.
a(5) = 4: 1, 2, 9, 126.
a(719) = 10: 1, 2, 9, 28, 65, 126, 217, 2745, 4914, 371694960.
MAPLE
with (numtheory):
q:= proc(n) local t; t:=n-1;
is(iroot(t, 3)^3=t)
end:
a:= n-> nops(select(q, divisors(n^3+1))):
seq (a(n), n=0..120); # Alois P. Heinz, Nov 08 2012
MATHEMATICA
Table[Count[Divisors[n^3+1], _?(IntegerQ[(#-1)^(1/3)]&)], {n, 0, 90}] (* Harvey P. Dale, Nov 15 2012 *)
CROSSREFS
Cf. A001093.
Sequence in context: A111336 A083902 A205562 * A196437 A106491 A073184
KEYWORD
nonn,easy
AUTHOR
Jonathan Vos Post, Oct 16 2012
EXTENSIONS
More terms from Alois P. Heinz, Nov 08 2012
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 22:36 EDT 2024. Contains 371917 sequences. (Running on oeis4.)