1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723
|
WIENER'S LEMMA ALONG PRIMES AND OTHER SUBSEQUENCES
CHRISTOPHE CUNY, TANJA EISNER, AND BA LINT FARKAS
arXiv:1701.00101v4 [math.FA] 9 Aug 2017
Abstract. Inspired by subsequential ergodic theorems we study the validity of Wiener's lemma and the extremal behavior of a measure on the unit circle via the behavior of its Fourier coefficients (kn) along subsequences (kn). We focus on arithmetic subsequences such as polynomials, primes and polynomials of primes, and also discuss connections to rigidity and return times sequences as well as measures on R. We also present consequences for orbits of operators and of C0-semigroups on Hilbert and Banach spaces extending the results of Goldstein [31] and Goldstein, Nagy [33].
1. Introduction
Wiener's lemma is a classical result connecting the asymptotic behavior of the Fourier coefficients
(n) = znd(z)
T
of a complex Borel measure on the unit circle T with its values on singletons. Despite its elementary proof, it has found remarkable applications in several areas of mathematics such as ergodic theory, operator theory, group theory and number theory.
Theorem 1.1 (Wiener's Lemma). Let be a complex Borel measure1 on the unit
circle T. Then
lim
N
1 N
N
|(n)|2
n=1
=
a
|({a})|2.
atom
(Since
(-n)
= (n),
one
can
replace
here
1 N
N n=1
by
1 2N +1
N n=-N
.)
As a consequence, one has the following characterization of Dirac measures in
terms of their Fourier coefficients. Here we restrict ourselves to probability measures
and give the proof for the reader's convenience.
Corollary 1.2 (Extremal behavior of Dirac measures). For a Borel probability
measure on T the following assertions are equivalent:
(i)
lim
N
1 N
N n=1
|(n)|2
=
1.
(ii) lim |(n)| = 1.
n
(iii) is a Dirac measure.
2010 Mathematics Subject Classification. 43A05, 43A25, 47A10, 47B15, 47A35, 37A30, 47D06. Key words and phrases. Wiener's lemma for subsequences, extremal measures, polynomials and primes, ergodic theorems, orbits of operators and operator semigroups. 1By definition finite.
1
2
CHRISTOPHE CUNY, TANJA EISNER, AND BA LINT FARKAS
Note that by the Koopmanvon Neumann lemma, see Lemma 2.1 (b) below and the paragraph preceding it, (i) is equivalent to |(n)| 1 in density as n i.e., to the existence of a subset J of density 1 with limn,nJ |(n)| = 1.
Proof. Let be a probability measure on T. If ({a}) = 1 for some a T, then (n) = an. Whence the implication (iii)(ii) follows, while (ii)(i) is trivial. To
show (i)(iii), suppose (i). Theorem 1.1 yields
1
=
lim
N
1 N
N
|(n)|2
n=1
=
a
({a})2
atom
a
({a})
atom
=
1,
implying ({a})2 = ({a}) or, equivalently, ({a}) {0, 1} for every atom a. We
conclude that is a Dirac measure.
The previous two results have the following operator theoretic counterparts.
Theorem 1.3 (Goldstein [32], Ballotti, Goldstein [5]). Let T be a (linear) contraction on a Hilbert space H, and for C denote by P the orthogonal projection onto ker( - T ). Then for every x, y H
lim
N
1 N
N
|(T nx|y)|2
n=1
=
|(Px|Py)|2
T
=
|(Px|y)|2.
T
It is easy to deduce the previous theorem from Wiener's lemma (and vice versa), even though the original proof of Goldstein went along different lines.
The following Banach space version of Corollary 1.2 is more complex, see also Lin [47] and Baillon, Guerre-Delabri`ere [4] for related results. Note that in these papers, the results are formulated for C0-semigroups but are also valid for powers of operators with analogous proofs.
Theorem 1.4 (Goldstein, Nagy [33]). Let T be a (linear) contraction on a Banach space E. Suppose for some x E
| T nx, x | | x, x | for every x E as n .
Then ( - T )x = 0 for some T.
The aim of this paper is to study the validity of Wiener's Lemma, Corollary 1.2 and Theorems 1.3, 1.4 along subsequences of N, where we study the equivalences (i)(iii) and (ii)(iii) in Corollary 1.2 separately.
First of all, some words about terminology. The term complex measure refers to C-valued -additive set function (which is then automatically finite valued, and has finite variation). In this paper only Borel measures will be considered. A subsequence (kn) in N will refer to a function k : N N which is strictly increasing for sufficiently large indices. Banach and Hilbert spaces will be considered over the complex field C.
Sequences for which Wiener's lemma and the extremality of Dirac measures work well include certain polynomial sequences, the primes, certain polynomials of primes and certain return times sequences as will be shown below. As an application of the general results we shall prove among others the following, maybe at first glance surprisingly looking, facts. We denote by pn the nth prime.
1) The only Borel probability measures on T with |(pn)| 1 for n are the Dirac measures (Theorem 4.4).
WIENER'S LEMMA ALONG SUBSEQUENCES
3
2) If T is a (linear) contraction on a Hilbert space and x H \ {0} is such that |(T pnx|x)| x 2 as n , then x is an eigenvector of T to a unimodular eigenvalue (Theorems 4.4 and 5.9).
3) If T is a power bounded operator on a Banach space E and x E \ {0} is such that | T pn x, x | | x, x | as n for every x E, then x is an eigenvector of T to a unimodular eigenvalue (Corollary 5.6).
We also relate our results to rigidity sequences and discover a property of such sequences as a byproduct which appears to be new.
Our results are inspired by ergodic theory, where the study of ergodic theorems along subsequences has been a rich area of research with connections to harmonic analysis and number theory. Furstenberg [30] described norm convergence of ergodic averages of unitary operators along polynomials. Pointwise convergence of ergodic averages for measure preserving transformations along polynomials and primes, answering a question of Bellow and Furstenberg, was proved by Bourgain [12, 13, 14] and Wierdl [60], with polynomials of primes treated by Wierdl [59] and Nair [52, 51]. To illustrate the wealth of literature on ergodic theorems along subsequences we refer, e.g., to Bellow [8], Bellow, Losert [7], Baxter, Olsen [6], Rosenblatt, Wierdl [56], Berend, Lin, Rosenblatt, Tempelman [9], Boshernitzan, Kolesnik, Quas, Wierdl [11], Krause [42], Zorin-Kranich [64], Mirek [48], Eisner [19], Frantzikinakis, Host, Kra [29], Wooley, Ziegler [62].
The paper is organized as follows. Section 2 is devoted to an abstract version of Wiener's lemma along subsequences. In Section 3 we study extremal and Wiener extremal subsequences, see Definition 3.1. The case of polynomials, primes and polynomials of primes is treated in Section 4. Section 5 is devoted to applications to orbits of operators on Hilbert and Banach spaces. The continuous parameter case is discussed in Section 6, where parallels and differences to the time discrete case are pointed out.
Acknowledgment. The authors thank Michael Lin, Rainer Nagel and Janos Pintz for helpful comments and references.
2. Wiener's Lemma along subsequences
Recall that a sequence (an) in C is called convergent in density to a C,
with notation D- limn an = a if there exists a set J N of density 1 with
limn,nJ an
=
a.
The
density
of
a
set
J
N
is
defined
by
limn
|J
{1,...,n}| n
,
provided the limit exists.
The following is the classical Koopmanvon Neumann lemma together with a
slight variation.
Lemma 2.1. (a) For a bounded sequence (an) in [0, ) the following are equiva-
lent:
(i) D- limn an = 0.
(ii)
limN
1 N
N n=1
an
=
0.
(iii)
limN
1 N
N n=1
a2n
=
0.
(b) For a bounded sequence (bn) in (-, 1] the following are equivalent:
(i) D- limn bn = 1.
(ii)
limN
1 N
N n=1
bn
=
1.
If bn 0, then these assertions are also equivalent to:
(iii)
limN
1 N
N n=1
b2n
=
1.
4
CHRISTOPHE CUNY, TANJA EISNER, AND BA LINT FARKAS
Proof. (a), (i)(ii) is the content of the Koopmanvon Neumann lemma, see, e.g., [40] or [21, Ch. 9], whereas (i)(iii) is a direct consequence. (b) follows from (a) by considering an := 1 - bn.
We further recall the following notion from Rosenblatt, Wierdl [56], see also [21, Chapter 21].
Definition 2.2. A subsequence (kn) of N is called good if
for every T the limit
lim
1
N
kn =: c()
exists.
N N
n=1
Moreover, (kn) is called an ergodic sequence if c = 1{1}, the characteristic function of {1}. We call the set := { : c() = 0} the spectrum of the sequence (kn) in analogy to, e.g., Lin, Olsen, Tempelman [46].
By an application of the spectral theorem it follows that a sequence (kn) is good
if and only if it is good for the mean ergodic theorem, that is if for every measure preserving system (X, , T ) and every f L2(X, ) the averages
1
N
T kn f
N
n=1
converge in L2(X, ), where T denotes the Koopman operator corresponding to the
transformation T defined by f f T . A good sequence is then ergodic if and
only if the above limit always equals the orthogonal projection PFix(T )f onto the fixed space Fix(T ) = ker(1 - T ).
Remark 2.3. For each subsequence (kn) of N, the sequence (kn ) is equidistributed in T for almost every T implying that c() exists and is 0 for Lebesgue almost every T, see, e.g., Kuipers, Niederreiter [43, Theorem 1.4.1] (or Theorem 2.2 on page 50 of [56], or combine Kronecker's lemma with Carleson's theorem). The
function c clearly satisfies c(1) = 1, c() = c() and |c()| 1 whenever c() exists. Moreover, if |c()| = 1, then kn converges to c() in density, which follows by Lemma 2.1 (b) applied to an := Re(c()kn ). Thus c is a multiplicative function on the subgroup { : |c()| = 1} of T. The function c : T C is Borel measurable (if it exists).
We present one more property of the limit function c. For an integer d 0 we set Gd := { T : d = 1}, the group of dth roots of unity.
Proposition 2.4. Let (kn) be a good sequence with corresponding limit function c. Then there exists an integer d 0 such that := { T : |c()| = 1} = Gd.
Proof. It follows from Remark 2.3 that is a group, and it is then well-known that is either finite or dense in T. We shall prove that it is finite.
Since (kn) is good, c is the pointwise limit of a sequence of continuous functions on a compact space. Hence, by a theorem of Baire, its set of continuity points is
dense in T.
As
mentioned
in
Remark
2.3,
limN
1 N
N n=1
kn
=
0
for
almost
every (with respect to the Haar measure on T). If is not finite, we infer that c
is nowhere continuous, which is impossible.
The following general fact may appear to be well known, but we could not find a reference.
WIENER'S LEMMA ALONG SUBSEQUENCES
5
Proposition 2.5 (Wiener's lemma along subsequences). Let (kn) be a good sequence in N.
(a) For every complex Borel measure on T
lim
N
1 N
N
|(kn)|2
n=1
=
c(12)d( )(1, 2).
T2
(b) The sequence (kn) is ergodic if and only if
lim
N
1 N
N
|(kn)|2
n=1
=
a
|({a})|2
atom
holds for every complex Borel measure on T. (c) For an ergodic sequence (kn) and a Borel probability measure on T the limit
above in (b) is 1 if and only if is a Dirac measure.
Proof. (a) The proof goes along the same lines as the most elementary and wellknown proof of the Wiener lemma. Observe that, by Fubini's theorem and by Lebesgue's dominated convergence theorem,
1 N
N
|(kn)|2
=
1 N
N
n=1
n=1
k1n d(1)
T
2kn d(2)
T
=
TT
1 N
N
(12)kn d(
n=1
)(1, 2)
c(12)d( ) as N .
T2
(b) If now c = 1{1} we see that, by Fubini' theorem, the limit above equals
1{1}(2)d(1) d(2) = ({2})d(2) =
|({a})|2.
TT
T
a atom
For the converse implication suppose (kn) is not ergodic, and let T\{1} be with
c() = 0.
If Re c() = 0,
then consider the
probability measure :=
1 2
(1
+
).
We then have
11 T2 c(12)d( )(1, 2) = 2 + 4
c() + c()
=
1 2
=
a
|({a})|2.
atom
If
Im c()
=
0,
then
for
the
measure
:=
1 2
(1
+
i)
we
have
T2
c(12)d(
)(1, 2)
=
1 2
+
i 4
c() - c()
=
1 2
=
a
|({a})|2.
atom
The proof of (b) is complete.
(c) follows from (b) by a similar arguments as in the proof of Corollary 1.2.
The following questions arise naturally, cf. also Proposition 3.15 below.
Question
2.6.
Does
the
existence
of
limN
1 N
N n=1
|(kn
)|2
for
every
proba-
bility Borel measure implies that (kn) is good? Is there a non-ergodic, good
sequence (kn) with Re c() = 0 for each T \ {1}?
6
CHRISTOPHE CUNY, TANJA EISNER, AND BA LINT FARKAS
Remark 2.7. If one replaces "probability measure" by "complex measure", the an-
swer to the first question is positive. Indeed, it is easy to see that for a subsequence
(kn)nN of N the following assertions are equivalent.
(i) For every finite complex measure (respectively every probability measure)
on
T
the
limit
limN
1 N
N n=1
|^(kn)|2
exists;
(ii) For every complex measure (respectively every probability measure) and
on
T
the
limit
limN
1 N
N n=1
Re(^(kn)^(kn))
exists.
Assume that the above equivalent conditions hold for probabilities. Taking := 1
and
:=
,
we
see
that
the
limit
limN
1 N
N n=1
Re(kn
)
exists.
If
we
assume
moreover that the conditions hold for finite complex measures, then, taking := i1
and
:=
,
we
see
that
the
limit
limN
1 N
N n=1
Im(kn )
exists,
implying
that
(kn) is good.
Corollary 2.8. Let (kn) be a good sequence. For a Borel probability measure
lim sup
N
1 N
N
|^(kn)|2
n=1
=
1
(1)
holds if and only if is discrete with
c(ab) = 1 for all atoms a, b.
(2)
In this case, the limit superior is a limit, and is supported in a coset Gd for some integer d 0.
Proof. Suppose (1) holds. Since (kn) is good, by Proposition 2.5 (a) the above limit superior is actually a limit and
1 N
N
|^(kn)|2
n=1
-
N
c(12)d(1)d(2) = 1.
TT
Hence
1 - Re(c(12)) d(1)d(2) = 0.
TT
Since 1 - Re(c(12)) 0 (and |c| 1). We infer that there exists 2 T such that for -a.e. 1 T, c(12) = 1. Hence, is supported on 2, which equals 2Gd for some integer d 0 by Proposition 2.4. This shows one implication.
For the converse implication let be discrete satisfying (2). Then by Proposition 2.5 (a)
1 N
N
|^(kn)|2 =
c(ab)({a})({b}) =
({a})({b}) = 1.
n=1
a,b atom
a,b atom
We now consider the case "in between", namely when c() = 0 for all but at most countably many 's. We first introduce the following terminology: For a subset of T denote by the subgroup generated . We call two elements 1, 2 T -dependent if their cosets with respect to coincide: 1 = 2 , otherwise we call them -independent.
Theorem 2.9. Let (kn) be a good sequence with at most countable spectrum .
WIENER'S LEMMA ALONG SUBSEQUENCES
7
(a) For every complex Borel measure on T
lim
N
1 N
N
|(kn)|2
n=1
=
c()
a
({a})({a}).
atom
In particular, for every continuous complex Borel measure on T
lim
N
1 N
N
|(kn)|2 = 0.
n=1
(b) For every Borel probability measure on T
lim
N
1 N
N
|(kn)|2
n=1
(a
aU
)2,
(3)
where U is a maximal set of -independent atoms. The equality in (3) holds if and only if satisfies (2) (but it may not necessarily be discrete).
Proof. (a) By Proposition 2.5 and Fubini's theorem we have
lim
N
1 N
N
|(kn)|2 =
n=1
c(12)d( )(1, 2)
T2
=
c()({1})d(1)
T
= c() ({1})d(1)
T
= c()
({a})({a}).
a atom
(b) Observe (the left-hand side below is greater or equal to zero by (a))
c()
({a})({a})
({a}) c()({a})
a atom
a atom
({a}) ({a})
a atom
=
({a})(a )
a atom
= (a )2.
aU
The last assertion regarding the equality is clear.
We will see below that there are sequences (kn) satisfying the assumptions of Theorem 2.9 and probability measures satisfying (1) which are not Dirac.
Remark 2.10. Let (kn) be a strictly increasing sequence in N having positive density. If the characteristic function of {kn : n N} is a Hartmann sequence (i.e., has Fourier coefficients), then (kn) is good with at most countable spectrum (see, e.g., Lin, Olsen, Tempelman [46] or Kahane [39]).
8
CHRISTOPHE CUNY, TANJA EISNER, AND BA LINT FARKAS
By using a result2 of Boshernitzan, which we recall for the sake of completeness, it is possible to show that good sequences with positive upper density have countable spectrum. Actually, his Theorem 41 in Rosenblatt [55] is stated in the case where nk = k for every k N, but the proof is the same.
Proposition 2.11 (Boshernitzan, see Rosenblatt [55]). Let (an) be a bounded sequence of complex numbers and let (Nm) be a subsequence of N. For every > 0, the set
T
:
lim inf
k
1 Nm
Nm
a
=1
is finite.
Recall that the upper density of a subsequence (kn) of N is defined by
d(kn)
:=
lim sup
N
|{n
:
kn N
N }| .
Corollary 2.12. Let (kn) be a good subsequence of N with positive upper density. For every > 0 the set { T : |c()| } is finite. In particular, (kn) has countable spectrum.
Proof. By assumption, there exists a subsequence (Nm)mN of N such that
lim
m
|{n
:
kn Nm
Nm}|
=
>
0.
Then, for A = {kn : n N} and for every T we obtain
1 Nm
Nm =1
1A()
-
m
c().
An application of Proposition 2.11 with a = 1A() finishes the proof.
Remark 2.13. A good sequence need not have positive upper density as, e.g., kn = n2 shows. See Section 4 below for this and other examples. On the other hand, a sequence with positive upper density (and even density) does not have to be good. Indeed, take 2N and change 2n to 2n + 1 if 2n lies in any interval of the form [4, 24], N. This sequence has density 1/2 but c(-1) does not exist. Modifying this construction it is easy to construct a sequence with density arbitrarily close to 1 which is not good. (Note that 1 cannot be achieved: every sequence with density 1 is automatically good.)
Remark 2.14. Suppose (kn) is a subsequence of N (not necessarily good) such that there is an at most countable set such that c() exists and equals 0 for every . By carrying out the same calculation as in the proof of (a) in Proposition 2.5 and using the Koopmanvon Neumann Lemma 2.1 we see that for each continuous measure on T we have (kn) 0 in density. It would be interesting to characterize those subsequences (kn) for which a (probability) measure is continuous if and only if (kn) 0 in density.
2We thank Michael Lin for bringing the reference [55] to our attention.
WIENER'S LEMMA ALONG SUBSEQUENCES
9
3. (Wiener) extremal subsequences
In this section we characterize subsequences (kn) for which the equivalences (i)(iii) and (ii)(iii) in Corollary 1.2 remain valid and show that (i)(ii) fails in general.
Definition 3.1. Let (kn) be a subsequence of N. We call a Borel probability measure Wiener extremal or extremal along (kn) if satisfies
lim
N
1 N
N
|(kn)|2 = 1
or
lim
n
|(kn)|
=
1,
respectively.
n=1
A subsequence (kn) in N is called (Wiener) extremal if every (Wiener) extremal measure is a Dirac measure. If every (Wiener) extremal discrete measure is Dirac,
then we call (kn) (Wiener) extremal for discrete measures.
We first consider Wiener extremal sequences.
Theorem 3.2. For a subsequence (kn) of N consider the following assertions:
(i) (kn) is Wiener extremal. (ii) (kn) is Wiener extremal for discrete measures. (iii) For each z T whenever
D- lim zkn 1,
n
then z = 1. (iv) c() = 1 implies = 1. Then (i)(ii)(iii)(iv). Moreover, (i)(ii) if (kn) is good.
Proof. (i)(ii) is trivial and (iii)(iv) follows from Remark 2.3.
(iii)(ii): Assume that there exists a discrete probability measure which is extremal and not Dirac. Let a, b be two different atoms of . Since
|(n)| |an({a}) + bn({b})| +
({}) 1,
=a,b atom
the extremality of implies that |akn ({a}) + bkn ({b})| converges in density to ({a}) + ({b}) or, equivalently, that |akn - bkn | converges in density to 1. Taking
z := ab = 1 in (iii), we arrive at a contradiction.
(ii)(iii): Assume that there exists z T with z = 1 such that zkn converges to 1 in density. Then for the probability measure defined by ({1}) = ({z}) = 1/2
(kn)
=
1
+ zkn 2
converges to 1 in density, hence (i) is false.
The last assertion follows immediately from Corollary 2.8.
Replacing, in the above proof, the Ces`aro limit by the classical limit and convergence in density by classical convergence yields the following.
Theorem 3.3. For a sequence (kn) in N consider the following assertions:
(i) (kn) is extremal. (ii) (kn) is extremal for discrete measures. (iii) G((kn)) := {z : zkn 1} = {1}.
10
CHRISTOPHE CUNY, TANJA EISNER, AND BA LINT FARKAS
Then (i)(ii)(iii). Moreover, (i)(ii) if (kn) is good.
Remark 3.4 (Ergodic sequences). By the above characterizations or by Proposition 2.5 (c), every ergodic sequence is Wiener extremal and hence extremal, too.
We recall the notation Gd =: { T : d = 1} and observe the following.
Proposition 3.5. Let (kn) be a subsequence of N satisfying
lim inf
n
(kn+1
-
kn)
<
.
Then any probability measure that is extremal along (kn) is discrete with supp() 0Gd for some d N and some 0 T. As a consequence, the following assertions are equivalent:
(i) (kn) is extremal. (ii) (kn) is extremal for discrete measures. (iii) For every q N, q 2 there are infinitely many n with kn / qN.
Remark 3.6. Note that assertion (iii) above just means that (kn) is extremal for roots of unity, i.e.,
lim kn = 1, T root of unity = = 1.
n
Remark 3.7. A sequence (kn) with lim infn(kn+1 - kn) < need not be good. An example is given by the sequence 2, 4, . . . , 2n, . . . where along a subsequence of density 0 we insert 2k + 1 right after 2k; or see Remark 2.13 for a not good sequence with positive density. Conversely, a good sequence (even if Wiener extremal) need not have such small gaps: Again kn = n2 is an example. Also, small gaps in (kn) do not imply that (kn) would be extremal, an example is kn = pn + 1, pn the nth prime. See Section 4 for more information.
Proof of Proposition 3.5. By assumption there exists an integer d N and a subsequence (n)N, such that
kn+1 - kn = d for all N.
(4)
Let be extremal along (kn), and let n [0, 2) be such that ^(kn) = ein |^(kn)|. Then
(1
[0,2)
-
cos(knt
-
n))d(t)
=
1
-
|^(kn)|
-
n
0.
Hence, (cos(kn -n ))N admits a subsequence converging -a.e. to 1. For simplicity, let us assume that the sequence itself converges -a.e. to 1 and that n 0 [0, 2] as . Similarly, we may assume that (cos(kn+1 -n+1))N converges -a.e to 1 and that n+1 1 [0, 2] as .
By using (4), we infer that for -a.e. t [0, 2)
dt - 1 + 0 = 0
mod 2.
Hence, is a discrete measure with supp() 0Gd for 0 = ei(1-0)/d and the first assertion is proven.
By Theorem 3.3, it remains to show (iii)(i). Let be extremal along (kn).
By the above we have =
d j=1
cj 0j ,
where
c1, . . . , cd
0
with
d j=1
cj
=
1,
WIENER'S LEMMA ALONG SUBSEQUENCES
11
0 T and 1, . . . , d being the dth roots of unity. The extremality of implies
|^(kn)|2 =
d cj kj n 2 =
d
cj cm(j m)kn
-
n
1.
j=1
j,m=1
By convexity reasons this is possible only if limn(j m)kn = 1 whenever cjcm = 0. Thus (iii) and Remark 3.6 imply j = m whenever cjcm = 0, meaning that is Dirac.
Remark 3.8. For a subsequence (kn) and a subset J N of density 1, (kn)nJ has the same upper density as (kn)nN by
1 N
1
1 N
1 0 as N .
kn N ,n/ J
nN,n/J
Lemma 3.9. Let (kn)nN be a subsequence of N with positive upper density. Then lim infn(kn+1 - kn) < .
Proof. Assume that kn+1 - kn as n . Let A > 0. There exists M > 0 such that for every n M , kn+1 - kn A. Hence, for every n M we have kn kM + (n - M )A (n - M )A. Hence, for every N N large enough,
|{n : kn N }| N/A + M
and thus d(kn) 1/A 0 as A , resulting in a contradiction.
Remark 3.10. It is not difficult to exhibit sequences (kn) with density 0 such that lim infn(kn+1 - kn) < . An important example is the sequence of primes (pn)nN. It is a recent, highly non-trivial result of Zhang that lim infn(pn+1 - pn) < , see [63] or the paper [53] by the Polymath project.
We have the following characterization of Wiener extremality for sequences with positive upper density. Note that extremality of such sequences was characterized in Proposition 3.5.
Proposition 3.11 (Wiener extremality of sequences with positive upper density). For a subsequence (kn) with positive upper density the following assertions are equivalent:
(i) (kn) is Wiener extremal. (ii) (kn) is Wiener extremal for discrete measures. (iii) d({n : kn / qN}) > 0 for every q N, q 2.
Note that assertion (iii) above just means that (kn) is Wiener extremal for roots of unity, i.e.,
D- lim kn = 1, T root of unity = = 1.
n
Proof. It suffices to show the implications (ii)(i) and (ii)(iii).
(ii)(i): Suppose that (kn) is Wiener extremal for discrete measures and let
be a Wiener extremal measure along (kn) with decomposition = d + c into
discrete and continuous parts. By Lemma 2.1 (b) and Remark 3.8 there exists a subsequence (kn ) of (kn) of positive upper density such that limn |^(kn )| = 1. By Theorem 1.1, Lemma 2.1 (a) there is a subsequence (mn) of N of density one
12
CHRISTOPHE CUNY, TANJA EISNER, AND BA LINT FARKAS
with limn |^c(mn)| = 0. Denoting by (n) the non-trivial intersection of (mn) with (kn ) we obtain
1
=
lim
n
|^(n)|
=
lim
n
|^d(n)|.
Thus d is also a probability measure, and therefore = d is Dirac by the as-
sumption.
(ii)(iii): By the equidistribution of (zn) for any irrational z (i.e., z not a root of unity) combined with Lemma 2.1 (b) and Remark 3.8 we obtain the implication:
D- lim zkn = 1 = z is rational.
n
In particular, by Theorem 3.2 (kn) is not extremal for discrete measures if and only if there exists q N, q 2 such that the set of n with kn qN has density one.
Thus, the question of characterizing extremality becomes interesting for sequences of density zero, see Section 4.
Example (Return time sequences). Let (X, , T ) be an ergodic measure preserving
probability system, and let T also denote the corresponding Koopman operator on
L2(X, ) defined by T f = f T . Let A X with (A) > 0. We show that for almost
every x X the return times sequence (kn) corresponding to {n N : T nx A} is Wiener extremal (and hence extremal) whenever T is totally ergodic. Note that
return times sequences play an important role for ergodic theorems, see Bourgain's
celebrated return times theorem in Bourgain, Furstenberg, Katznelson, Ornstein
[16] and a survey by Assani, Presser [3]. Let A,x(n) := |{k n : T kx A}|. We have for T
1 A,x(n)
k
kn,T kxA
=
1 A,x(n)
n
1T -kA(x)k
k=1
=
n A,x(n)
1 n
n
(T k1A)(x)k.
k=1
Birkhoff's ergodic theorem and the ergodicity assumption imply that for almost
every x X
lim
n
A,x(n) n
=
lim
n
1 n
n
(T k1A)(x) = (A),
k=1
i.e., the density of (kn) equals (A). Hence, by the WienerWintner theorem, see
[61], for almost every x
c()
=
1 (A)
lim
n
1 n
n
(T k1A)(x)k
=
1 (A)
(P
1A)(x)
for all T,
k=1
where P denotes the orthogonal projection onto ker( - T ). Thus for almost every x the spectrum of the return times sequence is at most countable. We suppose now
that T is totally ergodic and show that (kn) is Wiener extremal. As in the proof
of
Proposition
3.11,
if
limN
1 N
N n=1
kn
=
1,
then
is
rational
(i.e.,
a
root
of
unity). But then total ergodicity implies that c() = 0 for = 1, implying = 1,
and this shows that (kn) is Wiener extremal. Note that here total ergodicity cannot be replaced by ergodicity. Indeed, the rotation on two points is ergodic, but for A
consisting of one point the return times sequence (kn) = 2N is not extremal.
Example (Return time sequences along polynomials). Let (X, , T ) be an invertible totally ergodic system, let T denote also its Koopman operator on L2(X, ) and let
(A) > 0. Take a polynomial P Z[] with deg(P ) 2. We show that the return
WIENER'S LEMMA ALONG SUBSEQUENCES
13
times sequence (kn) along P corresponding to {n N : T P (n)x A} is ergodic and hence Wiener extremal and extremal for almost every x. (That the sequence is Wiener extremal is also for true for linear polynomials, which can be easily deduced from the previous example.)
We let A,x,P (n) := |{k n : T P (k)x A}| and compute for T
lim
n
A,x,P (n) n
=
lim
n
1 n
n
(T P (k)1A)(x) = (A)
a.e. x X,
(5)
k=1
where the last equality follows from a.e. convergence of polynomial averages by
Bourgain [12, 13, 14], from the fact that the rational spectrum factor is characteris-
tic for polynomial averages (see e.g. Einsiedler, Ward [18, Sec. 7.4]) and from total
ergodicity.
It is a further result of Bourgain that the limit
lim
n
1 n
n
(T P (k)1A)(x)k
(6)
k=1
exists for each T for a.e. x X, see [24]. Since deg(P ) 2, by the spectral theorem, by the equidistribution of polynomials with at least one irrational nonconstant coefficient and by total ergodicity, the limit in (6) for almost every x X equals (A) for = 1 and 0 if = 1. Combining this with (5) gives
lim
n
1 A,x,P (n)
k
kn,T P (k)xA
=
lim
n
n A,x,P (n)
1 n
n
(T P (k)1A)(x)k
k=1
= 1 if = 1, 0 otherwise,
for almost all x X, meaning that (kn) is ergodic for almost all x X.
Example (Double return times sequences). Let (X, , T ) be a weakly mixing system and let A, B X be with (A), (B) > 0. We show that the double return times sequence (kn) corresponding to {n N : T nx A, T 2nx B} is for almost every x ergodic and hence Wiener extremal and extremal.
By Bourgain [15] the limit
lim
n
1 n
n
(T k1A)(x)(T 2k1B)(x)
k=1
exists almost everywhere. Moreover, for weakly mixing systems the above limit equals (A)(B) a.e., see, e.g., [21, Theorem 9.29]. By Assani, Duncan, Moore [2, Theorem 2.3] (or by a product construction), for almost every x, the limit
lim
n
1 n
n
(T k1A)(x)(T 2k1B)(x)n
k=1
exists for each T and the HostKra factor Z2 is characteristic for such averages (meaning that only the projections of 1A and 1B onto this factor contribute to the limit). Since for weakly mixing systems all HostKra factors coincide with the fixed factor (see e.g. Kra [41, Sect. 6.1,7.3)]), the above limit equals (A)(B) for = 1 and to zero otherwise. As before, this shows that the double return times sequence is ergodic for almost every x X
14
CHRISTOPHE CUNY, TANJA EISNER, AND BA LINT FARKAS
For more ergodic sequences see Boshernitzan, Kolesnik, Quas, Wierdl [11]. Note
that since is not yet
the
pointwise
convergence
of
weighted
averages
along
primes
1 N
studied, the return times sequences along primes of the form {n
:
N n=1
nT
T pn x
pn
A} are currently out of reach.
Example (An extremal sequence which is not Wiener extremal). Consider the sequence (kn) defined by the following procedure. Take the sequence (2n)nN and for k belonging to a fixed subsequence of indices with density zero (e.g., the primes) insert 2k + 1 between 2k and 2k + 2.
Clearly, (kn) is good with c(1) = c(-1) = 1 and c() = 0 otherwise. Moreover, for z T
lim
N
1 N
N
|zkn
-
1|
=
0
lim
N
1 N
N
|z2n - 1| = 0 z {1, -1},
n=1
n=1
whereas limn |zkn - 1| = 0 is equivalent to z = 1. Thus, by Theorems 3.2 and 3.2, (kn) is extremal but not Wiener extremal. Note that an example of a Wiener extremal measure which is not Dirac is given by ({1}) = ({-1}) = 1/2.
We now go back to Wiener's lemma which in particular implies that a measure
is
continuous
if
and
only
if
limN
1 N
N n=1
|(n)|2
=
0.
This motivates the
following natural question concerning a characterization another kind of extremality
for subsequences.
Question 3.12. For which subsequences (kn) of N and which continuous measures
on T does
lim
N
1 N
N
|(kn)|2
n=1
=
0
(7)
hold? For which sequences (kn) does (7) hold for every continuous measure? For
which sequences (kn) does (7) characterize continuous measures ?
Remark 3.13. Property (7) characterizes continuous measures for ergodic sequences by Proposition 2.5 (b).
Note that by Theorem 2.9, for sequences which are good with at most countable spectrum, (7) holds for all finite continuous measures. The following two examples show however that even for such sequences (7) does not characterize continuous measures in general.
Example. Consider (kn) with kn := 2n + 1, which is of course a good sequence with
spectrum
=
{-1, 1}
and
c(-1)
=
-1.
Let
=
1 2
(1
+
-1).
Then
we
obtain
that
lim
N
1 N
N
|(2n + 1)|2 = 0.
n=1
The following observation conjectures a connection between the two kinds of extremality.
Remark 3.14. Consider the following assertions about a sequence (kn):
(i)
(kn)
is
Wiener
extremal
for
discrete
measures
and
1 N
N n=1
|(kn
)|2
0
as
N for each continuous measure .
(ii) (kn) is Wiener extremal.
WIENER'S LEMMA ALONG SUBSEQUENCES
15
(iii)
(kn)
is
Wiener
extremal
for
discrete
measures
and
1 N
N n=1
|(kn
)|2
1
as
N for each continuous measure .
(iv) (kn) is Wiener extremal for discrete measures.
Then we have the implications (i) (ii) (iii) (iv). Moreover, for good
sequences we have also (iv) (ii), i.e., the last three statements are equivalent.
Proof. (i) (ii) follows immediately from the decomposition into the discrete and the continuous part and the triangle inequality (note that by the Koopmanvon Neumann Lemma 2.1 we can remove the square in (i)), whereas the implications (ii) (iii) (iv) are trivial. The last assertion is Theorem 3.2.
We finally discuss connection to rigidity sequences. Recall that for T a sequence (kn) is called a -rigidity sequence if there is a continuous probability measure on T with (kn) as n . Moreover, 1-rigidity sequences are called rigidity sequences. Note that, although for every T, -rigid (along some subsequence) continuous measures are typical in the Baire category sense in all probability measures, see Nadkarni [50], to check whether a given sequence (kn) is rigid or -rigid is often a challenge. For more details on such sequences, their properties, examples and connections to ergodic and operator theory we refer to Nadkarni [50, Ch. 7], Eisner, Grivaux [23], Bergelson, del Junco, Lemanczyk, Rosenblatt, [10], Aaronson, Hosseini, Lemanczyk [1], Grivaux [36], Fayad, Kanigowski [27], and [20, Section 4.3].
Theorem 2.9 (a) and Corollary 2.8 imply in particular a possibly unexpected necessary property of rigidity sequences.
Proposition 3.15. (a) Suppose the sequence (kn) is such that there exists a continuous measure on T with
lim sup
N
1 N
N
|(kn)|2
n=1
>
0.
Then either (kn) is not good, or good with uncountable spectrum. (b) -rigidity sequences are not good.
For a consequence for prime numbers, polynomials and polynomials of primes see Proposition 4.5 below.
Example. The sequence (2n) is a rigidity sequence, see Eisner, Grivaux [23] and Bergelson, del Junco, Lemanczyk, Rosenblatt [10], and, as every lacunary sequence, is not good for the mean ergodic theorem, see Rosenblatt, Wierdl [56, Section II.3]. More examples are sequences satisfying kn|kn+1 or limn kn+1/kn = , although limn kn+1/kn = 1 is possible, for details see the two above mentioned papers, [10] and [23].
4. Wiener's Lemma along polynomials and primes
In this section we consider arithmetic sequences such as values of polynomials, primes and polynomials on primes, inspired by ergodic theorems along such sequences by Bourgain, Wierdl, and Nair, see [12, 13, 14, 60, 59, 52, 51]. Note that all these sequences have density zero (if the degree of the polynomial is greater or equal to two).
16
CHRISTOPHE CUNY, TANJA EISNER, AND BA LINT FARKAS
The following lemma is classical, see Vinogradov [58], Hua [38], Rhin [54], and Rosenblatt, Wierdl [56, Section II.2]. We present here a quick way to derive it for polynomials of primes from a recent powerful result of Green and Tao [35, Prop. 10.2] on the orthogonality of the modified von Mangoldt function to nilsequences.
Lemma 4.1. Let kn = P (n), n N, or kn = P (pn), n N, where P is an integer polynomial and pn denotes the nth prime. Then c() = 0 for every irrational T
(not a root of unity).
Proof (for polynomials of primes). Let
(n) := log n, 0,
if n is prime, otherwise,
let N and let
W = W :=
p.
p prime, p
For r < W coprime to W consider the modified -function
r, (n)
:=
(W W
)
(W
n
+
r),
n N,
for the Euler totient function . Let now P be an integer polynomial and bn := (n)P (n). Since (P (n))nN can be represented as a Lipschitz nilsequence for a connected, simply connected Lie group, see Green, Tao, Ziegler [34, Appendix C], it follows from Green and Tao [35, Prop. 10.2], see [19, Lemma 3.2 (b), Cor. 2.2], that
lim
N
1 N
N
bn
=
lim
1 W
lim
N
1 N
N
bW n+r
n=1
r<W, (r,W )=1
n=1
=
lim
1 (W
)
lim
N
1 N
N
r,(n)P (W n+r)
r<W, (r,W )=1
n=1
=
lim
1 (W
)
lim
N
1 N
N
P (W n+r).
(8)
r<W, (r,W )=1
n=1
Since P (W +r) for 0 < r < W are again integer polynomials and is irrational (not a root of unity), the sequences (P (W n+r))nN are all equidistributed in T, see e.g. Kuipers, Niederreiter [43, Theorem 1.3.2], and hence the right hand side of (8)
equals zero. By a classical equality, see e.g. [19, Lemma 3.1],
lim
N
1 N
N
bn
=
lim
N
1 N
N
(n)P (n)
=
lim
N
1 N
N
P (pn) = c()
n=1
n=1
n=1
implying the assertion.
Since for every P Z[x] and every q N, the sequence (P (n)) is q-periodic
modulo q, the following form of the limit function c can be calculated for the above classes of arithmetic sequences. Here and later we denote e(x) := e2ix for x R.
WIENER'S LEMMA ALONG SUBSEQUENCES
17
For (P (n))
c()
=
1
q
q
0,r=1
e(P
(r)b/q),
= e(b/q), (b, q) = 1, irrational.
(9)
For (P (pn)) the prime number theorem in arithmetic progressions, see
e.g. Davenport [17], implies
c()
=
1 (q)
0,
r{1,...,q},(r,q)=1
e(P
(r)b/q),
= e(b/q), (b, q) = 1, not a root of unity.
(10)
For more information on the limit in (9) see Kunszenti-Kovacs [44], KunszentiKovacs, Nittka, Sauter [45].
An immediate corollary of Lemma 4.1 together with Corollary 2.8 is the following variant of Wiener's lemma.
Theorem 4.2 (Wiener's lemma along polynomials and primes). Let kn = P (n) or kn = P (pn) for n N, where P is an integer polynomial and pn denotes the nth
prime. Then every finite, positive measure on T satisfies
lim
N
1 N
N
|(kn)|2
n=1
=
c(e(a/q))
a/qQ
({})({e(a/q)})
atom
(11)
({e(Q)})2,
U
where U is a maximal set of rationally independent atoms of . Moreover, the equality in the above holds if and only if c(e(a/q)) = 1 holds for
every a, q such that 1 = e(a/q)2 for some atoms 1, 2 of .
Remark 4.3. For example, the equality in the inequality (11) holds if has no atoms or just one atom 1, in which case the limit equals 0 or ({1})2, respectively.
Theorem 4.4. Let P Z[x] be a polynomial.
(a) The sequence (P (n)) is Wiener extremal it is extremal for all q 2 there is an r with P (r) = 0 mod q.
(b) The sequence (pn) of primes is Wiener extremal and hence extremal, too. (c) The sequence (P (pn)) is Wiener extremal it is extremal for all q 2
there is an r coprime to q with P (r) = 0 mod q.
Proof. Assertion (b) and the equivalence of Wiener extremality with the number theoretic characterization in (a) and (c) follow directly from the formulas for the limit functions (9), (10) and Theorem 3.2.
Since Wiener extremality implies extremality, it remains to show that in (a) and (c) extemality implies the number theoretic characterization. For (a), assume that there exists q {2, 3, . . .} such that P (r) qN for all r N. Consider the measure := (e(1/q) + e(-1/q))/2. Then
^(P (r)) = (e(P (r)/q) + e(-P (r)/q))/2 = 1 for every r,
so (P (n)) is not extremal. The corresponding implication in (c) follows analogously.
18
CHRISTOPHE CUNY, TANJA EISNER, AND BA LINT FARKAS
Example. We now show that for sequences of the form kn = P (pn), where pn
denotes the nth prime, there are discrete measures which are not Dirac with
limN
1 N
N n=1
|(kn)|2
=
1.
Indeed,
let
P
be
some
integer
polynomial
such
that
there exists q N with the property that P (r) = 0 mod q for every r N coprime
to q. Then we have in particular P (p)/q N for every prime p and therefore
c(a/q)
=
lim
N
1 N
N
e(P (pn)a/q)
n=1
=
1
for every a {1, . . . , q}. Thus, the limit of the Wiener averages along such (kn) is 1 for being discrete with aq = 1 for every atom a T.
By Theorem 4.4 the sequences (n2) and (p2n) are both Wiener extremal. Note, however, that (n2 + 5) is Wiener extremal, while (p2n + 5) is trivially not. More examples are listed below.
In the following examples we apply the criteria from the previous theorem to various polynomials.
Example. Consider the polynomial P (x) = x2 + a, a N. Then for any a the sequence (P (n)) is extremal (for q 2 take r = 0 or r = 1 in the characterization). We claim that (P (pn)) is extremal if and only if each prime divisor of a+1 is greater than 3. If 2|a + 1, then P (pn) are all even so that the sequence cannot be extremal. If 3|a + 1, then take q = 3. P (1) a + 1 0 mod q, and P (2) a + 1 0 mod q. Hence (P (pn)) cannot be extremal.
Suppose the prime divisors of a+1 are all different form 2, 3. Let q 2 be arbitrary. If q |a + 1 = P (1), then r = 1 is a good choice for the criteria in Theorem 4.4. If q|a + 1, then P (2) = 3 + a + 1, so that if q|P (2), then q|3 would follow, which is impossible.
A concrete examples are (n2 + 4) and (p2n + 4) both being extremal, while (n2 + 2) is extremal and (p2n + 2) is not.
Example. Consider the polynomial P (x) = xk + 2. Then for any k N, k 1 the sequence (P (n)) is extremal. We claim that (P (pn)) is extremal if and only if k is odd. Indeed, 3|P (2) iff k is even. (For q take r = 1, unless q = 3 in which case take r = 2.)
Example. Consider the polynomial P (x) = ax+b. The sequence (an+b) is extremal iff (a, b) = 1. The sequence (apn + b) is extremal iff a + b 0 mod 2 and (a, b) = 1. Indeed, that a, b are relatively prime is clearly necessary, while the choice q = 2 in Theorem 4.4 shows that the other condition needs to be fulfilled if (apn + b) is extremal. Conversely, suppose that both conditions hold, and let q 2 be arbitrary. If q |a + b, then we are done with r = 1. If q|a + b, then q is odd, i.e., (q, 2) = 1 and P (2) = 2a + b 0 mod q, because otherwise q|a and q|b, a contradiction.
Finally, a direct consequence of Proposition 3.15 is the following.
Proposition 4.5. (a) Let P Z[x] be as in Theorem 4.4 (a). Then (P (n)) is not a -rigidity sequence for any T.
(b) (pn) is not a -rigidity sequence for any T. (c) Let P Z[x] be as in Theorem 4.4 (b). Then (P (pn)) is not a -rigidity
sequence for any T.
WIENER'S LEMMA ALONG SUBSEQUENCES
19
More precisely, for (kn) any of the preceding sequences and for every continuous measure on T we have
lim
N
1 N
N
|(kn)|2 = 0.
(12)
n=1
Note that it has been observed by Eisner, Grivaux [23] and Bergelson, del Junco, Lemanczyk, Rosenblatt [10] that (P (n)) and (pn) are not rigidity sequences, but for (P (pn)) this property seems to be new.
Example. Consider the sequence (pn) of primes. We have seen that (pn) is good
with
e(Q)
and
c(-1)
=
-1.
Let
=
1 2
(1
+ -1).
Then
we
have
c(e(b/q))
({e(b/q)a})({a})
b/qQ
a atom
= ({1})2 + ({-1})2 + 2 Re c(-1)({1})({-1}) = (1/2 - 1/2)2 = 0.
So is a discrete measure with
lim
N
1 N
N
|(pn)|2
n=1
=
0.
This shows that for the sequence (kn) = (pn) the validity of (12) for a probability measure does not imply that is continuous.
5. Orbits of operators and operator semigroups
In this section we study orbits of power bounded linear operators along subsequences and obtain generalizations and extensions of some results of Goldstein and Nagy.
Theorem 5.1. Let (kn) be a good subsequence in N with at most countable spectrum, and let T L(H) be a linear contraction on the Hilbert space H. Then for any x, y H
lim
1
N
|(T kn x|y)|2 =
N N
c() (Pax|y)(Pay|x),
n=1
T
aT
where P denotes the orthogonal projection onto ker( - T ).
Note that by assumption, the summands above are non-zero for at most countably many and a.
Let T be a linear contraction on a Hilbert space H. We decompose H orthogonally as H = Huni Hcnu into unitary and completely non-unitary subspaces both of them being T , T -invariant, see Sz.-Nagy, Foias [57], or [21, App. D]. The corresponding orthogonal projections are denoted by Puni and Pcnu, respectively. By a result of Foguel [28] the operator T is weakly stable on Hcnu, i.e., T n 0 in the weak operator topology (see also [21, App. D] and [20, Section II.3.2]).
Proof of Theorem 5.1. We apply the spectral theorem on Huni and obtain the scalar spectral measures x,y on T:
(T kx|y) = zkdx,y = x,y(k) for all k Z, x, y Huni.
T
20
CHRISTOPHE CUNY, TANJA EISNER, AND BA LINT FARKAS
We have
(T kx|y) = (T kPunix|Puniy) + (T k(I - Puni)x|(I - Puni)y).
This implies
N
N
|(T kn x|y)|2 = |(T kn Punix|Puniy)|2
n=1
n=1
N
+ |(T kn (I - Puni)x|(I - Puni)y)|2
n=1
N
+ 2 Re (T kn Punix|Puniy)((I - Puni)y|T kn (I - Puni)x).
n=1
Since for any w Hcnu we have T kw 0 weakly as k , we conclude
lim
N
1 N
N
|(T
kn x|y)|2
=
lim
N
1 N
N
|(T kn Punix|Puniy)|2
n=1
n=1
1
+
lim
N
N
N
|(T kn (I - Puni)x|(I - Puni)y)|2
n=1
+
lim
N
1 N
2
Re
N
(T kn Punix|Puniy)((I - Puni)y|T kn (I - Puni)x)
n=1
=
lim
N
1 N
N
|(T kn Punix|Puniy)|2
n=1
= lim 1 N N
N
|Punix,Puniy (kn)|2
n=1
= c()
Punix,Puniy ({a})Puniy,Punix({a})
T
a atom
= c() (Pax|y)(Pay|x),
T
aT
and that was to be proven.
Next, we need the following easy lemma.
Lemma 5.2. Let T be a contraction on a Hilbert space H, let x H and (kn) be a subsequence in N such that
lim |(T kn x|x)| = x 2.
n
Then there is some sequence (n) in T with limn nT knx = x. In particular, one has
lim |(T kn x|y)| = |(x|y)| for all y H.
n
Proof. For every n N, let n T be such that n(T kn x|x) = |(T knx|x)|. Since T is a contraction, we have
0 nT knx - x 2 2 x 2 - 2 Re(n(T kn x|x)) = 2 x 2 - 2|(T knx|x)|
WIENER'S LEMMA ALONG SUBSEQUENCES
21
and the right hand side converges to zero by assumption. Thus
lim
n
nT kn x - x
=0
holds, and the assertion follows.
The following proposition characterizes (Wiener) extremal sequences for discrete measures via extremal properties of Hilbert space contractions or of general power bounded Banach space operators with relatively compact orbits.
Remark 5.3. Let E be a Banach space and T L(E) be a power bounded operator on E. Recall that the set of all vectors with relatively compact orbits include eigenvectors and is a closed linear subspace of E, see, e.g. Engel, Nagel [26, Proposition A.4] or [21, Ch. 16]. Thus every vector from the Kronecker (or reversible)
subspace Er := lin{x E : T x = x for some T} has relatively compact orbits. On the other hand, every x with relatively compact orbit can be decomposed as x = xr + xs, where xr Er and xs is strongly stable, i.e., satisfies limn T nxs = 0, see e.g., [20, Thm. I.1.16]. (This decomposition is usually called the Jacobsde LeeuwGlicksberg decomposition.)
Proposition 5.4. Let (kn) be a subsequence in N.
(a) The following assertions are equivalent: (i) (kn) is Wiener extremal for discrete measures. (ii) For every Hilbert space H, every contraction T L(H) and every x H \ {0} with relatively compact orbit
lim
1
N
|(T kn x|x)|2 =
x4
N N
n=1
(13)
implies that x is an eigenvector to a unimodular eigenvalue. (iii) For every power bounded operator T on a Banach space E and every
x E \ {0} with relatively compact orbit,
lim
N
1 N
N
| T kn x, x |2 = | x, x |2
for all x E
n=1
(14)
implies that x is an eigenvector to a unimodular eigenvalue. (b) The analogous equivalence holds for extremal sequences for discrete measures
when (13) is replaced by
and (14) is replaced by
lim |(T kn x|x)| = x 2
n
lim | T knx, x | = | x, x | for all x E.
n
Proof. (a) To show (ii) (i), let be a discrete probability measure with
lim
N
1 N
N
|^(kn)|2
n=1
=
1.
22
CHRISTOPHE CUNY, TANJA EISNER, AND BA LINT FARKAS
Consider the Hilbert space L2(T, ) and the multiplication operator T on it given by (T f )(z) = zf (z). The assumption on implies
lim
N
1 N
N
|(T
kn 1|1)|2
=
lim
N
1 N
N
|^(kn)|2 = 1 =
1 4.
n=1
n=1
Moreover, by 1 = a atom 1{a}, T 1{a} = a1{a} and by Remark 5.3 1 has relatively compact orbits.
By (ii), there exists T with T 1 = 1, hence a atom a1{a} = a atom 1{a}. This implies 1 = 1{}, i.e., is Dirac.
(i) (iii): We may assume without loss of generality that E is spanned by the orbit of x under T . By Remark 5.3, T has relatively compact orbits on E.
Let T. Since T has relatively compact orbits as well, the mean ergodic projections
P
:=
lim
N
1 N
N
nT n
n=1
onto ker( - T ) exist, where the limit is understood strongly, see, e.g., [20, Section I.2.1] or [21, Ch. 16]. Note that these projections are bounded and commute with T.
By Remark 5.3 (see [20, Theorem I.1.20], or [21, Ch. 16] for details) E can be decomposed into the reversible part Er and the stable part Es, both being T -invariant, where
Er = lin{y E : T y = y for some T},
Es
=
{y
E
:
lim
n
T ny
= 0}.
Denote by Pr and Ps the corresponding projections (which commute with T ) and decompose x = xr + xs with xr Er and xs Es. We have for every x E
1 N
N
|
T kn xs, x
|2
=
1 N
N
|
PsT kn x, x
|2
=
1 N
N
| T kn x, Psx |2
n=1
n=1
n=1
| x, Psx |2 = | xs, x |2
as N , which together with the strong stability of T on Es implies xs = 0. So that x = xr Er.
Next we argue similarly to the proof of Lemma 6 in Goldstein, Nagy [33]. Let
, T be such that Px = 0 and Px = 0. By the HahnBanach theorem there exists z E such that Px, z = 0 and Px - Px, z = 0, i.e., Px, z = Px, z = 0. Observe
1 N
N
|nk Px, z
+ nk
Px, z
|2
=
1 N
N
| T nk Px + T nk Px, z |2
n=1
n=1
=
1 N
N
| T nk x, (P + P )z |2
n=1
| x, (P + P )z |2 = | Px, z + Px, z |2
WIENER'S LEMMA ALONG SUBSEQUENCES
23
or, equivalently,
1 N
N
|()kn + 1|2 4
n=1
as N . By Theorem 3.2 we have = , and therefore x is an eigenvector to a
unimodular eigenvalue.
(iii) (ii) follows from Lemma 5.2.
The proof of (b) is, with obvious modifications, the same as for part (a). In particular, one has to apply Theorem 3.3 in place of Theorem 3.2.
For certain sequences including the primes and sequences with positive upper density we have the following extension to power bounded operators on Banach spaces.
Theorem 5.5. Let (kn) be extremal for discrete measures with lim infn(kn+1 - kn) < . Then for every bounded operator T on a Banach space E and every
x E \ {0},
lim | T knx, x | = | x, x | for all x E
(15)
n
implies that x is an eigenvector with unimodular eigenvalue.
Proof. Let E, T, x be as in the statement. By assumption there exists an integer
d N and a subsequence (n) such that kn+1 -kn = d for all N. Applying (15) with (T )dx, we infer that for every x E, limn | T kn+dx, x | = | T dx, x |. By the property of (n) and by the assumption we deduce | T dx, x | = | x, x | for every x E. By the HahnBanach theorem, there exists C, such that T dx = x. Moreover, we must have || = 1. This implies that T is power bounded on the invariant subspace E0 := lin{T jx : j = 0, . . . , d-1} and that x has relatively compact orbit. Proposition 5.4 (b) finishes the proof.
Corollary 5.6. Denote by pn the nth prime. For every bounded operator T on a Banach space E and every x E \ {0},
lim | T pn x, x | = | x, x | f or every x E
n
implies that x is an eigenvector with unimodular eigenvalue. As a consequence, limn T pn = I in the weak operator topology implies T = I.
Proof. By Theorem 4.4 the sequence (pn) is extremal, and by the celebrated result of Zhang [63] (pn) has bounded gaps. So the previous theorem applies.
We now characterize Wiener extremal sequences (kn) via extremal properties of powers T kn of Hilbert space contractions T .
Theorem 5.7. For a subsequence (kn) of N the following are equivalent:
(i) (kn) is Wiener extremal. (ii) For every Hilbert space H, every linear contraction T on H and every x
H \ {0}, if
lim
N
1 N
N
|(T knx|x)|2 =
x 4,
n=1
(16)
then x is an eigenvector of T with unimodular eigenvalue.
24
CHRISTOPHE CUNY, TANJA EISNER, AND BA LINT FARKAS
Proof. (ii) (i): Let be a probability measure and consider the Hilbert space
L2(T, ) and the unitary operator T defined by (T f )(z) = zf (z). Then (n) =
(T n1|1).
If
1 N
N n=1
|(kn
)|2
=
1
=
1 22, then by the assumption 1 is an eigen-
function of T to some unimodular eigenvalue , meaning that = .
(i) (ii): We can assume x = 1 and decompose H = Hcnu Huni. We first show that x Huni which is, with a similar argument, due to Foguel [28, Theorem 1.3]. Observe
|(T nx|x)|2 = |(T nPcnux|x)|2 + |(T nPunix|x)|2 + 2 Re(T nPcnux|x)(x|T nPunix).
Here the first and the last terms converge to 0 as n , because T is weakly stable on Hcnu. From this we obtain
1
=
lim
N
1 N
N
|(T knx|x)|2
=
lim
N
1 N
N
|(T kn Punix|Punix)|2.
n=1
n=1
In particular Punix = x = 1, implying x = Punix. So we can assume that
H = Huni, and consider the spectral measure x for the unitary operator T . Then
x(kn)
=
(T knx|x),
and
1 N
N n=1
|(kn
)|2
1.
By the assumption that (kn) is
Wiener extremal, we obtain that x is a Dirac measure, meaning that x is an
eigenvector to an unimodular eigenvalue.
Proposition 5.8. If (kn) has positive upper density, then the assertions in Theorem 5.7 are equivalent to
(iii) For every Banach space E, every power bounded operator T L(E) and every x E \ {0} with relatively weakly compact orbit, if
lim
1
N
| T kn x, x |2 = | x, x |2
for every x E,
(17)
N N
n=1
then x is an eigenvector of T with unimodular eigenvalue.
Proof. Indeed, (iii)(ii) follows from Lemma 5.2. To show the implication (i)(iii) we assume without loss of generality that T is a contraction (by taking an equivalent norm). Let (kn) be Wiener extremal and E, T and x be as in (iii). We can also assume that E is spanned by the orbit of x under T by restriction to this subspace if necessary. By e.g. Engel, Nagel [26, Proposition A.4] or [21, Sec. 16.2], every orbit of T on E is relatively weakly compact and therefore T admits the Jacobsde LeeuwGlicksberg decomposition E = Er Es, where
Er = lin{y E : T y = y for some T},
Es
=
{y
E
:
lim T mn y
n
=
0
weakly
for
some
(mn)
with
density
1},
see e.g. [20, pp. 911] or [21, Ch. 16] for details. Let Q be the corresponding projection onto Er, which commutes with T . Applying (17) to Qx instead of x we see that Qx satisfies (17) as well. Since the orbit of Qx is relatively compact and
Wiener extremality implies Wiener extremality for discrete measures, T Qx = Qx
for some T by Proposition 5.4. It remains to show that Qx = x.
Let xs := x-Qx Es and let (mn) be the sequence of density 1 with limn T mnxs = 0 weakly. Applying (17) to (I - Q)x instead of x we see that xs also satisfies (17). By Lemma 2.1 (b) and Remark 3.8, for a fixed x E with x = 1 and xs, x = xs there exists a subsequence (kn ) of (kn) with positive upper density
WIENER'S LEMMA ALONG SUBSEQUENCES
25
such that limn | T kn xs, x | = | xs, x |. Let (n) denote the intersection of (kn ) with (mn) (which has positive upper density). We have
0
=
lim |
n
T n xs, x
|
=
|
xs, x
|
=
xs .
The proof is complete.
Analogously we obtain the following characterization of extremal sequences, where we restate Theorem 5.5 for the sake of completeness.
Theorem 5.9. For a subsequence (kn) of N the following are equivalent: (i) (kn) is extremal. (ii) For every Hilbert space H, for every T linear contraction on H, and for every x H \ {0}, if lim |(T kn x|x)| = x 2,
n
then x is an eigenvector of T with unimodular eigenvalue.
Moreover, if (kn) satisfies lim infn(kn+1 -kn) < (for example, has positive upper density), then the above are equivalent to:
(iii) For every bounded operator T on a Banach space E and every x E \ {0},
lim | T kn x, x | = | x, x | for every x E
n
implies that x is an eigenvector of T with unimodular eigenvalue.
The implication (i) (iii) of Theorem 5.9 extends Theorem 1.4 by Goldstein, Nagy to subsequences.
We finally provide a characterization of identity operators in terms of convergence of T nk to identity in the spirit of Gelfand's T = I Theorem, see e.g., [26, Theorem B.17].
Theorem 5.10. Let (kn) be a subsequence of N.
(a) Consider the following assertions: (i) (kn) is extremal. (ii) Every Hilbert space contraction T with
lim T kn = I
n
(18)
in the weak operator topology is the identity I itself.
Then (i)(ii); and (i)(ii) if (kn) is good. Moreover, one can replace "Hilbert space contraction T " by "bounded operator T on a Banach space" whenever
(kn) satisfies lim infn(kn+1 - kn) < . (b) The analogous statement holds when in (a) one replaces "extremal" by "Wiener
extremal" in condition (i), while in (ii) (18) is replaced by
D- lim T kn = I.
n
Moreover, one can replace "Hilbert space contraction T " by "Banach space operator T with weakly relatively compact orbits" whenever (kn) has positive upper density.
Proof. (a) (i)(ii): By Theorem 5.9 any x E \ {0} is an eigenvector of T for some eigenvalue T. So that kn 1 as n , but then by Theorem 3.3 = 1
follows.
26
CHRISTOPHE CUNY, TANJA EISNER, AND BA LINT FARKAS
(ii)(i): Assume that (kn) is good. If (kn) is not extremal, then by Theorem 3.3 there is T with = 1 with kn 1 as n . The diagonal operator T := diag(1, ) on E := C2 provides a counterexample to (ii).
The proof of (b) is analogous, where one uses Theorem 5.7 and 3.2 in place of Theorems 5.9 and 3.3, respectively, as well as Proposition 5.8.
For examples of sequences for which the equivalences in Theorems 5.7, 5.9 and 5.10 hold see Remarks 3.4, 3.8 and Theorem 4.4.
The following result shows Wiener extremality of polynomial sequences for power bounded operators on Hilbert spaces.
Proposition 5.11. Let P Z[] be with P (N0) N0 such that (P (n)) is extremal, i.e., satisfies the equivalent conditions in Theorem 4.4 (a). Let further H be a Hilbert space and T L(H) be a power bounded operator on H. Then
D- lim T P (n)x = x weakly = x Fix(T ).
n
In particular, D- limn T P (n) = I in the weak operator topology implies T = I.
Proof. By ter Elst, Muller [25, Theorem 2.4],
lim
N
1 N
N
T P (n)x
n=1
=
0
whenever x Hrat, where Hrat is the closed linear span of eigenvectors of T corresponding to rational T. Thus by assumption we have x Hrat. Applying the projection Pker(-T ) to the equality D- limn T P (n)x = x, we see that Pker(-T )x = 0 for every = 1 by Theorem 4.4(a), proving x Fix(T ).
6. The continuous parameter case
In this section we investigate finite Borel measures on R, the validity of the corresponding version of Wiener's lemma for eventually monotone functions and subsequences, extremal functions and sequences, and some implications for orbits of C0-semigroups on Banach spaces. Many proofs go analogously to the case of T and thus will be omitted. A substantial difference between the discrete and the continuous parameter case is discussed in Subsection 6.4 below.
In the following, f : [0, ) R will be a measurable, locally integrable and eventually monotone function with lim f (t) = .
t
6.1. General results and extremal functions. We call f good if the limit
c()
:=
lim
1
e(f (t))dt
0
exists for every R. We further call f ergodic if it is good with c = 1{0}. Note
that c satisfies c(0) = 1, c(-) = c() for all R, and is multiplicative on the
subgroup { : |c()| = 1} of R. These assertions can be proved analogously to
Remark 2.3. For a good function f we call the set := { : c() = 0} its spectrum.
It
is
not
true
in
general
that
for
f
as
above,
lim
1
0
e(f (t))dt
=
0
for
Lebesgue-a.e. R (take for instance f = log). However, this is the case if we
assume moreover f to be good. In particular, we have an analogue of Proposition
2.4 for good functions.
WIENER'S LEMMA ALONG SUBSEQUENCES
27
Proposition 6.1. Let f be good. Then c vanishes almost everywhere with respect to the Lebesgue measure m. Moreover, there exists R such that { R : |c()| = 1} = Z.
Proof. Let L1(m). Then, ^() = R e(t)(t)dt C0(R). Hence, by dominated convergence,
c(t)(t)dt =
R
R
lim
1
e(tf ())(t)d
0
dt
=
lim
1
^(f ())d = 0.
0
Since the latter holds for every L1(m), c must vanish m-almost everywhere.
The second statement may be proved as Proposition 2.4.
As in the discrete case, we have the following abstract version of Wiener's lemma along functions.
Proposition 6.2. (Wiener's lemma along functions, R-version) Let f be good.
(a) For every complex Borel measure on R
lim
1
|^(f (t))|2dt =
0
c( - )d( )(, ).
R2
(b) The function f is ergodic if and only if
lim 1
|^(f (t))|2dt =
|({a})|2
0
a atom
holds for every complex Borel measure on R. (c) For an ergodic function f and a Borel probability measure on R the limit
above is 1 if and only if is a Dirac measure.
We deduce the following analogue of Corollary 2.8.
Corollary 6.3. Let f be good. For a probability measure on R
lim
1
|^(f (t))|2dt = 1
0
holds if and only if is discrete with the property
c(a - b) = 1 for all atoms a, b.
(19)
In this case, there exists , R such that is supported on Z + .
For A R, denote by A the additive subgroup generated by A. We call 1, 2 R A-dependent if their cosets coincide: 1 + A = 2 + A .
Theorem 6.4. For a good function f with at most countable spectrum the following assertions hold:
(a) For every complex Borel measure on R
lim
1
|^(f (t))|2dt = c()
({a - })({a}).
0
a atom
In particular, for every continuous complex Borel measure on R
lim
1
|^(f (t))|2dt = 0.
0
28
CHRISTOPHE CUNY, TANJA EISNER, AND BA LINT FARKAS
(b) For every Borel probability measure on R
lim
1
|^(f (t))|2dt
(a + )2,
0
aU
(20)
where U is a maximal set of -independent atoms. The equality in (20) holds if and only if satisfies (19) (but is not necessarily discrete).
With
the
continuous
notion
of
density
defined
by
d(A)
:=
limt
m(A[0,t]) t
(m
the Lebesgue measure) and a continuous version of the Koopmanvon Neumann
lemma, see, e.g., [20, Lemma III.5.2], one defines extremal and Wiener extremal
functions analogously to Definition 3.1 using the Fourier transform of (finite, Borel)
measures on R. Moreover, one has the analogous characterization of such functions
as in Section 3, where (iii) in Theorem 3.3 (and Theorem 3.2, respectively) is
replaced by:
e(f (t)) 1 (in density) implies = 0.
6.2. Orbits of C0-semigroups. We now consider orbits of strongly continuous (C0-)semigroups on Banach spaces. For a thorough introduction to the theory of C0-semigroups see, e.g., Engel, Nagel [26]. The following result is a time continuous analogue of Theorem 5.1.
Theorem 6.5. Let f be good with at most countable spectrum, and let (T (t))t0 be a C0-semigroup of contractions with generator A on a Hilbert space H. Then for any x, y H
lim
1
|(T (f (t))x|y)|2dt = c() (Pa-x|y)(Pay|x) ,
0
R
aR
where P denotes the orthogonal projection onto
ker(i - A) = ker(e(t) - T (t)).
t0
Also Lemma 5.2, Proposition 5.4 and Theorems 5.7, 5.9 and 5.10 transfer to this situation with the natural and obvious changes. In particular, unimodular
eigenvalues of the operator T should be replaced by imaginary eigenvalues a iR of the generator A (which correspond to unimodular eigenvalues eta of each T (t)). We refer, e.g., to [20] for the continuous parameter version of the tools needed, such
as the decomposition into a unitary and a completely non-unitar part, the Jacobs
de LeeuwGlicksberg decomposition for semigroups with relatively compact orbits, etc. Furthermore, we refer to Mustafayev [49, p. 317] for an argument showing the strong continuity of the lifted semigroup (T~(t))t0 for the proof of the continuous analogue of (ii)(iii) in Theorem 5.7.
6.3. Subsequences. Let now (kn) be an eventually strictly monotone sequence in R with limn kn = . Consider the function f : [0, ) R which is constant kn on the interval [n - 1, n) for n = 1, 2, . . . and is otherwise 0. We see that
1 N
N 0
e(f (t))dt
=
1 N
N
e(kn),
n=1
1 N
N 0
|^(f (t))|2dt
=
1 N
N
|^(kn)|2,
n=1
WIENER'S LEMMA ALONG SUBSEQUENCES
29
thus we are in the setting of subsequences as before, with the difference that the subsequences are now real. We call a subsequence (kn) in R good if the corresponding f is good, i.e., the limit
c()
:=
lim
N
1 N
N
e(kn)
n=1
exists for every R. We further call (kn) ergodic if it is good with c = 1{0}. For subsequences in N these notions coincide with the ones in Section 2. Moreover, the
spectrum of (kn) defined as { R : c() = 0} coincides with the spectrum of the corresponding function f .
Analogously, we define R-extremal and R-Wiener extremal sequences using ex-
tremality or Wiener extremality of f , respectively. Thus (kn) is R-extremal or R-Wiener extremal if and only if it has the corresponding properties from Definition 3.1.
As for functions, the results of Sections 2, 3 and 5 transfer verbatim up to natural
and obvious changes. For example, as in the discrete case, we have the following
abstract Wiener lemma along subsequences.
Proposition 6.6 (Wiener's lemma along subsequences, R-version). Let (kn) be a good sequence in R.
(a) For every complex Borel measure on R
lim
N
1 N
N
|^(kn)|2
n=1
=
c(t - s)d( )(t, s).
R2
(b) The sequence (kn) is ergodic if and only if
lim
N
1 N
N
|^(kn)|2 =
|({a})|2
n=1
a atom
holds for every complex Borel measure on R.
(c) For an ergodic sequence (kn) and a Borel probability measure on R the limit above is 1 if and only if is a Dirac measure.
6.4. Arithmetic sequences. In this subsection we study examples of R-extremal and R-Wiener extremal sequences. The situation here is very different from the time discrete case.
We begin with the following observation.
Example (Sequences from a copy of Z). Assume that there is a > 0 such that
(kn) aZ. Then (kn) is not R-extremal and hence not R-Wiener extremal even
for
discrete
measures.
Indeed,
consider
:=
1 2
(1/a
+
-1/a).
Then
is
not
Dirac
with
^(kn) =
R
e(kn)d()
=
e(kn/a) + e(-kn/a) 2
=
1
for all n N.
More generally, any measure in conv{k/a : k Z} provides a similar example.
As a corollary, unlike the discrete case, polynomials with rationally dependent
coefficients, primes or such polynomials of primes, though being good with count-
able spectrum, are not R-extremal and hence not R-Wiener extremal. Note that for such sequences (kn) the periodic unitary group of translations on L2([0, a]) satisfies
30
CHRISTOPHE CUNY, TANJA EISNER, AND BA LINT FARKAS
T (an) = I for every n Z and thus presents a counterexample to the continuous
analogues of (ii) and (iii) in Proposition 5.4, Theorems 5.7, 5.9 and 5.10 and 1)4)
from the introduction.
On the other hand, polynomials with rationally dependent non-constant coeffi-
cients and rationally independent constant term are R-Wiener extremal and hence
R-extremal. Indeed, without loss of generality let kn = P (n) + b for a polynomial
P with coefficients from aZ and b being rationally independent from a. Since the
spectrum of (kn) is countable, it suffices to show that c() = 1 implies = 0 by a
continuous analogue of Theorem 3.2. As in Section 4 one can prove that
c()
=
e(b)
lim
N
1 N
N
e
n=1
P
(n) a
a
=
1 q
q r=1
e(b)e( P
(r)d aq
),
0,
if
a
=
d q
Q,
if a / Q.
So that c() = 1 implies a = d/q Q for some d Z, q N and (b + P (r))d aZ for all r {1, . . . , q}. Since a, b are rationally independent, d = = 0. Analogously, for such polynomials P the sequence (P (pn)) (pn denoting the nth prime) is RWiener extremal and hence R-extremal, too.
Consider finally P R[] with rationally independent non-constant coefficients. Then for kn := P (n), n N, we have by Weyl's equidistribution theorem
c() = 0 for all = 0,
i.e., (P (n)) is ergodic. Thus by Proposition 6.6 (c) (P (n)) is R-Wiener extremal and hence R-extremal. Moreover, a suitable modification of Lemma 4.1 using Weyl's equidistribution theorem for polynomials (and the fact that the product of finitely many nilsequences is again a nilsequence) shows that for such polynomials the sequence (P (pn)) is ergodic, and hence R-Wiener extremal.
6.5. Orbits of C0-semigroups revisited. We thus have the following continuous parameter versions of the results from the introduction being the generalizations of the respective results of Goldstein [31] and Goldstein, Nagy [33]. (For the Jacobsde LeeuwGlicksberg decomposition for C0-semigroups with relatively compact orbits see, e.g., [20, Theorem I.1.20].)
Theorem 6.7. Let (kn) be of the form (P (n)) or (P (pn)), where P R[] has either rationally independent non-constant coefficients, or rationally dependent nonconstant coefficients which are rationally independent from the constant coefficient, and we suppose that the leading coefficient of P is positive.
(a) Let (T (t))t0 be a C0-semigroup of contractions with generator A on a Hilbert space H. Then for any x, y H
lim
N
1 N
N
|(T (kn)x|y)|2
n=1
=
|(Pax|y)|2,
aR
where Pa denotes the orthogonal projection onto ker(a - T ). Moreover,
lim
N
1 N
N
|(T (kn)x|x)|2 =
x4
n=1
for x = 0 implies that x is an eigenvector of A with imaginary eigenvalue.
WIENER'S LEMMA ALONG SUBSEQUENCES
31
(b) Let E be a Banach space and (T (t))t0 be a bounded C0-semigroup on E with generator A. Then
lim
N
1 N
N
| T (kn)x, x |2 = | x, x |2
for every x E
n=1
for x E \ {0} with relatively compact orbit implies that x is an eigenvector of A with imaginary eigenvalue.
For example, (a) and (b) in Theorem 6.7 fail for (n2) or (pn) but hold for (n2 + ) or (pn + 2).
We finish with the following extremality property of primes being a continuous analogue of Corollary 5.6, with analogous proof.
Theorem 6.8. Let a > 0 and b R be rationally independent. Then for every C0semigroup (T (t))t0 on a Banach space E with generator A and every x E \ {0},
lim |
n
T (apn
+ b)x, x
|
=
|
x, x
|
f or every x E
implies that x is an eigenvector of A with imaginary eigenvalue. As a consequence, limn T (apn + b) = I in the weak operator topology implies T (t) = I for every t 0.
References
[1] J. Aaronson, M. Hosseini, and M. Lemanczyk, IP-rigidity and eigenvalue groups, Ergodic Theory Dynam. Systems 34 (2014), no. 4, 10571076.
[2] I. Assani, D. Duncan, R. Moore, Pointwise characteristic factors for WienerWintner double recurrence theorem, Ergodic Theory Dynam. Systems 36 (2016), no. 4, 10371066.
[3] I. Assani and K. Presser, A survey of the return times theorem, Ergodic theory and dynamical systems, De Gruyter Proc. Math., De Gruyter, Berlin, 2014, pp. 1958.
[4] J.-B. Baillon and S. Guerre-Delabri`ere, Optimal properties of contraction semigroups in Banach spaces, Semigroup Forum 50 (1995), no. 2, 247250.
[5] M. E. Ballotti and J. A. Goldstein, Wiener's theorem and semigroups of operators, Infinite-dimensional systems (Retzhof, 1983), Lecture Notes in Math., vol. 1076, Springer, Berlin, 1984, pp. 1622.
[6] J. R. Baxter and J. H. Olsen, Weighted and subsequential ergodic theorems, Canad. J. Math. 35 (1983), no. 1, 145166.
[7] A. Bellow and V. Losert, The weighted pointwise ergodic theorem and the individual ergodic theorem along subsequences, Trans. Amer. Math. Soc. 288 (1985), no. 1, 307345.
[8] A. Bellow, Sur la structure des suites "mauvaises universelles" en theorie ergodique, C. R. Acad. Sci. Paris Ser. I Math. 294 (1982), no. 1, 5558.
[9] D. Berend, M. Lin, J. Rosenblatt, and A. Tempelman, Modulated and subsequential ergodic theorems in Hilbert and Banach spaces, Ergodic Theory Dynam. Systems 22 (2002), no. 6, 16531665.
[10] V. Bergelson, A. del Junco, M. Lemanczyk, and J. Rosenblatt, Rigidity and non-recurrence along sequences, Ergodic Theory Dynam. Systems 34 (2014), no. 5, 14641502.
32
CHRISTOPHE CUNY, TANJA EISNER, AND BA LINT FARKAS
[11] M. Boshernitzan, G. Kolesnik, A. Quas, and M. Wierdl, Ergodic averaging sequences, J. Anal. Math. 95 (2005), 63103.
[12] J. Bourgain, An approach to pointwise ergodic theorems, Geometric aspects of functional analysis (1986/87), Lecture Notes in Math., vol. 1317, Springer, Berlin, 1988, pp. 204223.
[13] J. Bourgain, On the pointwise ergodic theorem on Lp for arithmetic sets, Israel J. Math. 61 (1988), no. 1, 7384.
[14] J. Bourgain, Pointwise ergodic theorems for arithmetic sets, Inst. Hautes E tudes Sci. Publ. Math. (1989), no. 69, 545, With an appendix by the author, Harry Furstenberg, Yitzhak Katznelson, and Donald S. Ornstein.
[15] J. Bourgain, Double recurrence and almost sure convergence, J. Reine Angew. Math. 404 (1990), 140161.
[16] J. Bourgain, H. Furstenberg, Y. Katznelson, and D. S. Ornstein, Appendix on return-time sequences, Inst. Hautes Etudes Sci. Publ. Math. (1989), no. 69, 4245.
[17] H. Davenport, Multiplicative number theory, third ed., Graduate Texts in Mathematics, vol. 74, Springer-Verlag, New York, 2000, Revised and with a preface by Hugh L. Montgomery.
[18] M. Einsiedler, T. Ward, Ergodic Theory: With a View Towards Number Theory. Graduate Texts in Mathematics, 259, Springer-Verlag, London, 2011.
[19] T. Eisner, Nilsystems and ergodic averages along primes, preprint, arXiv:1601.00562, 2016.
[20] T. Eisner, Stability of operators and operator semigroups, Operator Theory: Advances and Applications, vol. 209, Birkhauser Verlag, Basel, 2010.
[21] T. Eisner, B. Farkas, M. Haase, R. Nagel, Operator Theoretic Aspects of Ergodic Theory, Graduate Texts in Mathematics, Springer, 2015.
[22] T. Eisner, B. Farkas, R. Nagel, and A. Sereny, Weakly and almost weakly stable C0-semigroups, Int. J. Dyn. Syst. Differ. Equ. 1 (2007), no. 1, 4457.
[23] T. Eisner and S. Grivaux, Hilbertian Jamison sequences and rigid dynamical systems, J. Funct. Anal. 261 (2011), no. 7, 20132052.
[24] T. Eisner, B. Krause, (Uniform) convergence of twisted ergodic averages, Ergodic Theory Dynam. Systems 36 (2016), no. 7, 21722202.
[25] A. F. M. ter Elst, V. Muller, A van der Corput-type lemma for power bounded operators, Math. Z. 285 (2017), no. 1-2, 143158.
[26] K.-J. Engel and R. Nagel, One-parameter semigroups for linear evolution equations, Graduate Texts in Mathematics, vol. 194, Springer-Verlag, New York, 2000, With contributions by S. Brendle, M. Campiti, T. Hahn, G. Metafune, G. Nickel, D. Pallara, C. Perazzoli, A. Rhandi, S. Romanelli and R. Schnaubelt.
[27] B. Fayad and A. Kanigowski, Rigidity times for a weakly mixing dynamical system which are not rigidity times for any irrational rotation, Ergodic Theory Dynam. Systems 35 (2015), no. 8, 25292534.
[28] S. R. Foguel, Powers of a contraction in Hilbert space, Pacific J. Math. 13 (1963), 551562.
[29] N. Frantzikinakis, B. Host, and B. Kra, Multiple recurrence and convergence for sequences related to the prime numbers, J. Reine Angew. Math. 611 (2007), 131144.
[30] H. Furstenberg, Recurrence in ergodic theory and combinatorial number theory, Princeton University Press, Princeton, N.J., 1981, M. B. Porter Lectures.
WIENER'S LEMMA ALONG SUBSEQUENCES
33
[31] J. A. Goldstein, Extremal properties of contraction semigroups on Hilbert and Banach spaces, Bull. London Math. Soc. 25 (1993), no. 4, 369376.
[32] J. A. Goldstein, Applications of operator semigroups to Fourier analysis, Semigroup Forum 52 (1996), no. 1, 3747, Dedicated to the memory of Alfred Hoblitzelle Clifford (New Orleans, LA, 1994).
[33] J. A. Goldstein and B. Nagy, An extremal property of contraction semigroups in Banach spaces, Illinois J. Math. 39 (1995), no. 3, 441449.
[34] B. Green, T. Tao, and T. Ziegler, An inverse theorem for the Gowers U s+1[N ]norm, Ann. of Math. (2) 176 (2012), no. 2, 12311372.
[35] B. Green and T. Tao, Linear equations in primes, Ann. of Math. (2) 171 (2010), no. 3, 17531850.
[36] S. Grivaux, IP-Dirichlet measures and IP-rigid dynamical systems: an approach via generalized Riesz products, Studia Math. 215 (2013), no. 3, 237259.
[37] F. Hiai, Weakly mixing properties of semigroups of linear operators, Kodai Math. J. 1 (1978), no. 3, 376393.
[38] L.-K. Hua, Die Abschatzung von Exponentialsummen und ihre Anwendung in der Zahlentheorie, Enzyklopadie der mathematischen Wissenschaften: Mit Einschluss ihrer Anwendungen, Bd. I, vol. 2, B. G. Teubner Verlagsgesellschaft, Leipzig, 1959.
[39] J.-P. Kahane, Sur les coefficients de Fourier-Bohr, Studia Math. 21 (1961/1962), 103106.
[40] B. O. Koopman and J. von Neumann, Dynamical systems of continuous spectra, Proc. Nat. Acad. Sci. U.S.A. 18 (1932), 255263.
[41] B. Kra, Ergodic methods in additive combinatorics, Additive Combinatorics, 103, CRM Proc. Lecture Notes, 43, Amer. Math. Soc., Providence, RI, 2007.
[42] B. Krause, Polynomial ergodic averages converge rapidly: Variations on a theorem of Bourgain, preprint, arXiv:1402.1803v1, 2014.
[43] L. Kuipers and H. Niederreiter, Uniform distribution of sequences, WileyInterscience [John Wiley & Sons], New York-London-Sydney, 1974, Pure and Applied Mathematics.
[44] D. Kunszenti-Kovacs, On the limit of square-Ces`aro means of contractions on Hilbert spaces, Arch. Math. (Basel) 94 (2010), no. 5, 459466.
[45] D. Kunszenti-Kovacs, R. Nittka, and M. Sauter, On the limits of Cesa`ro means of polynomial powers, Math. Z. 268 (2011), no. 3-4, 771776.
[46] M. Lin, J. Olsen, and A. Tempelman, On modulated ergodic theorems for Dunford-Schwartz operators, Proceedings of the Conference on Probability, Ergodic Theory, and Analysis (Evanston, IL, 1997), vol. 43, 1999, pp. 542567.
[47] P.-K. Lin, A remark on contraction semigroups on Banach spaces, Bull. London Math. Soc. 27 (1995), no. 2, 169172.
[48] M. Mirek, p(Z)-boundedness of discrete maximal functions along thin subsets of primes and pointwise ergodic theorems, Math. Z. 279 (2015), no. 1-2, 2759.
[49] H. S. Mustafayev, Mixing type theorems for one-parameter semigroups of operators, Semigroup Forum 92 (2016), no. 2, 311334.
[50] M. G. Nadkarni, Spectral theory of dynamical systems, Texts and Readings in Mathematics, vol. 15, Hindustan Book Agency, New Delhi, 2011, Reprint of the 1998 original.
[51] R. Nair, On polynomials in primes and J. Bourgain's circle method approach to ergodic theorems, Ergodic Theory Dynam. Systems 11 (1991), no. 3, 485499.
34
CHRISTOPHE CUNY, TANJA EISNER, AND BA LINT FARKAS
[52] R. Nair, On polynomials in primes and J. Bourgain's circle method approach to ergodic theorems. II, Studia Math. 105 (1993), no. 3, 207233.
[53] Polymath, D. H. J. Variants of the Selberg sieve, and bounded intervals containing many primes, Res. Math. Sci. 1 (2014), Art. 12, 83 pp.
[54] G. Rhin, Sur la repartition modulo 1 des suites f (p), Acta Arith. 23 (1973), 217248.
[55] J. M. Rosenblatt, Norm convergence in ergodic theory and the behavior of Fourier transforms, Canad. J. Math. 46 (1994), no. 1, 184-199.
[56] J. M. Rosenblatt and M. Wierdl, Pointwise ergodic theorems via harmonic analysis, Ergodic theory and its connections with harmonic analysis (Alexandria, 1993), London Math. Soc. Lecture Note Ser., vol. 205, Cambridge Univ. Press, Cambridge, 1995, pp. 3151.
[57] B. Sz.-Nagy and C. Foias, Sur les contractions de l'espace de Hilbert. IV, Acta Sci. Math. Szeged 21 (1960), 251259.
[58] I. M. Vinogradov, The method of trigonometrical sums in the theory of numbers, Dover Publications, Inc., Mineola, NY, 2004, Translated from the Russian, revised and annotated by K. F. Roth and Anne Davenport, Reprint of the 1954 translation.
[59] M. Wierdl, Almost everywhere convergence and recurrence along the primes, Ph.D. thesis, Ohio State University, 1989.
[60] M. Wierdl, Pointwise ergodic theorem along the prime numbers, Israel J. Math. 64 (1988), no. 3, 315336 (1989).
[61] N. Wiener and A. Wintner, Harmonic analysis and ergodic theory, American Journal of Mathematics, 63 415426 (1941).
[62] T. D. Wooley and T. D. Ziegler, Multiple recurrence and convergence along the primes, Amer. J. Math. 134 (2012), no. 6, 17051732.
[63] Y. Zhang, Bounded gaps between primes, Ann. of Math. (2) 179 (2014), no. 3, 1121-1174.
[64] P. Zorin-Kranich, Variation estimates for averages along primes and polynomials, J. Funct. Anal. 268 (2015), no. 1, 210238.
Institut de Sciences Exactes et Appliquees, University of New-Caledonia, New-Caledonia E-mail address: christophe.cuny@univ-nc.nc
Institute of Mathematics, University of Leipzig P.O. Box 100 920, 04009 Leipzig, Germany E-mail address: eisner@math.uni-leipzig.de
School of Mathematics and Natural Sciences, University of Wuppertal Gaustrae 20, 42119 Wuppertal, Germany E-mail address: farkas@math.uni-wuppertal.de
|