|
| |
|
|
A063444
|
|
Smallest number such that GCD of EulerPhi of 2 consecutive integer equals 2n.
|
|
2
| |
|
|
3, 12, 13, 15, 121, 35, 86, 64, 37, 99, 726, 72, 158, 196, 61, 96, 4931, 73, 7639, 175, 343, 267, 2302, 104, 250, 676, 162, 637, 3481, 154, 21142, 192, 2178, 411, 5041, 814, 446, 1145, 157, 164, 6971, 1348, 14878, 1334, 542, 2115, 22090, 193, 2842, 2200
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 1,1
|
|
|
LINKS
| Harry J. Smith, Table of n, a(n) for n=1,...,350
|
|
|
FORMULA
| Min{x; GCD[Phi[x+1], Phi[x]]=2n}=Min{x; A058515[x]=2n}
|
|
|
EXAMPLE
| n = 10, a(10) = 99, Phi(99) = 60, Phi(100) = 40, GCD[60,40] = 2n = 20.
|
|
|
PROG
| (PARI) { for (n=1, 350, x=1; while (gcd(eulerphi(x+1), eulerphi(x)) != 2*n, x++); write("b063444.txt", n, " ", x) ) } [From Harry J. Smith (hjsmithh(AT)sbcglobal.net), Aug 21 2009]
|
|
|
CROSSREFS
| A000010, A058515.
Sequence in context: A085060 A024546 A073542 * A117061 A089919 A176796
Adjacent sequences: A063441 A063442 A063443 * A063445 A063446 A063447
|
|
|
KEYWORD
| nonn
|
|
|
AUTHOR
| Labos E. (labos(AT)ana.sote.hu), Jul 24 2001
|
| |
|
|