login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A272329
Indices of records in A272328.
0
1, 3, 16, 15, 35, 39, 45, 91, 111, 117, 135, 364, 287, 296, 292, 273, 369, 385, 429, 482, 465, 866, 819, 861, 915, 964, 1154, 1209, 1281, 1558, 1448, 1395, 1845, 1928, 2432, 2336, 2308, 2306, 2275, 2379, 3472, 3416, 3285, 3344, 2583, 3224, 2715, 2775, 2896, 3003
OFFSET
1,2
MATHEMATICA
t = Table[Count[Range@ n, k_ /; EulerPhi@ n == EulerPhi[n + k]], {n, 3600}]; TakeWhile[Flatten[FirstPosition[t, #] & /@ Range@ Max@ t] /. n_ /; MissingQ@ n -> 0, # != 0 &] (* Michael De Vlieger, Apr 25 2016, Version 10.2 *)
PROG
(Sage) L=[sum([1 for k in [1..n] if euler_phi(n)==euler_phi(n+k)]) for n in [1..4000]]
print([L.index(i)+1 for i in [1..50]])
CROSSREFS
Sequence in context: A320543 A213847 A195883 * A076623 A372486 A370978
KEYWORD
nonn
AUTHOR
Tom Edgar, Apr 25 2016
STATUS
approved