|
| |
|
|
A134420
|
|
Composite squarefree numbers of the form n^2 + 1.
|
|
0
| |
|
|
10, 26, 65, 82, 122, 145, 170, 226, 290, 362, 442, 485, 530, 626, 730, 785, 842, 901, 962, 1090, 1157, 1226, 1370, 1522, 1765, 1937, 2026, 2117, 2210, 2305, 2402, 2501, 2602, 2705, 2810, 3026, 3365, 3482, 3601, 3722, 3845, 3970, 4097, 4226, 4490, 4762
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 1,1
|
|
|
COMMENTS
| Square roots of these numbers are quadratic irrationals and corresponding chain fraction reresentations are periodic: sqrt(10) = [3;{2,3}], sqrt(26) = [5;{2,5}], sqrt(65) = [8;{2,8}], ..., where {} is denoted a period (we write {6} == {2,3}).
|
|
|
EXAMPLE
| a(1)=10 because 10 = 3^2 + 1 is a squarefree number,
a(2)=26 because 26 = 5^2 + 1 is a squarefree number,
a(3)=65 becasue 65 = 8^2 + 1 is squarefree.
|
|
|
MAPLE
| ts_fn3:=proc(n) local i, tren, ans; ans:=[ ]: for i from 1 to n do tren := i^(2)+1: if (isprime(tren) = false and numtheory[mobius] (tren) <> 0 ) then ans:=[ op(ans), tren ]: fi od: RETURN(ans) end: ts_fn3(200);
|
|
|
CROSSREFS
| Cf. A002496, A124809.
Sequence in context: A074789 A125075 A055710 * A144255 A072379 A005970
Adjacent sequences: A134417 A134418 A134419 * A134421 A134422 A134423
|
|
|
KEYWORD
| nonn
|
|
|
AUTHOR
| Jani Melik (jani_melik(AT)hotmail.com), Jan 18 2008
|
|
|
EXTENSIONS
| Definition corrected by T. D. Noe, Sep 16 2008
|
| |
|
|