,9, has authored 4 sequences.
A292766
Numbers n whose trajectory under iteration of the map k -> (sigma(k)+phi(k))/2 consists only of integers and is unbounded, excluding numbers n whose trajectory merges with the trajectory of a smaller number.
Original entry on oeis.org
270, 440, 496, 702, 737, 813, 828, 897, 905, 1027, 1066, 1099, 1240, 1241, 1260, 1331, 1353, 1368, 1371, 1422, 1507, 1537, 1754, 1760, 1834, 1848, 2002, 2016, 2282
Offset: 1
A177479
Number of permutations of 1..n avoiding adjacent step pattern up, down, down.
Original entry on oeis.org
1, 1, 2, 6, 21, 90, 450, 2619, 17334, 129114, 1067661, 9713682, 96393726, 1036348587, 11998603710, 148842430470, 1969461102357, 27688474234602, 412166988789642, 6476330295597051, 107117619952992966, 1860296912926495938, 33845967939906741213, 643778989807702357314
Offset: 0
Submitted independently by Signy Olafsdottir (signy06(AT)ru.is), May 09 2010 (9 terms) and R. H. Hardin, May 10 2010 (17 terms)
A177477
Number of permutations of 1..n avoiding adjacent step pattern up, down, up.
Original entry on oeis.org
1, 1, 2, 6, 19, 70, 331, 1863, 11637, 81110, 635550, 5495339, 51590494, 524043395, 5743546943, 67478821537, 844983073638, 11240221721390, 158365579448315, 2355375055596386, 36870671943986643, 606008531691619131, 10435226671431973345, 187860338952519968538
Offset: 0
Submitted independently by Signy Olafsdottir (signy06(AT)ru.is), May 09 2010 (9 terms) and R. H. Hardin, May 10 2010 (17 terms)
-
b:= proc(u, o, t) option remember; `if`(u+o=0, 1,
add(b(u-j, o+j-1, [1, 3, 1][t]), j=1..u)+
`if`(t=3, 0, add(b(u+j-1, o-j, 2), j=1..o)))
end:
a:= n-> b(n, 0, 1):
seq(a(n), n=0..25); # Alois P. Heinz, Mar 10 2020
-
b[u_, o_, t_] := b[u, o, t] = If[u + o == 0, 1,
Sum[b[u - j, o + j - 1, {1, 3, 1}[[t]]], {j, 1, u}] +
If[t == 3, 0, Sum[b[u + j - 1, o - j, 2], {j, 1, o}]]];
a[n_] := b[n, 0, 1];
Table[a[n], {n, 0, 25}] (* Jean-François Alcover, Mar 08 2022, after Alois P. Heinz *)
A061971
Numbers n such that n divides the (left) concatenation of all numbers <= n written in base 18 (most significant digit on right).
Original entry on oeis.org
1, 17, 89, 6343, 9707, 9799, 91069, 120581, 484307, 725341, 2571749, 3432583, 4482203
Offset: 1
Larry Reeves (larryr(AT)acm.org), May 24 2001 a(9)-a(13) from
-
b = 18; c = {}; Select[Range[10^4], Divisible[FromDigits[c = Join[Reverse[IntegerDigits[#, b]], c], b], #] &] (* Robert Price, Mar 09 2020 *)
Edited and updated by Larry Reeves (larryr(AT)acm.org), Apr 12 2002
Comments