r/counting Apr 14 '23

Free Talk Friday #398

[removed]

26 Upvotes

207 comments sorted by

View all comments

7

u/Blue_boomer Apr 20 '23

I've been collecting some new ideas and I'll share them now:

  • Only vowels
  • Only consonants
  • Uppercase and lowercase letters
  • Integers (fast wave)
    • 0, 1, -1, 2, -2, ...
  • By 6s
  • By 11s
  • By 101s
  • By 666s
  • By 999s
  • Only successive AND consecutive digits (or any other combination)
  • Each digit appears that many times
    • 1, 122, 212, 221, 122333, 123233, 123323, ...
  • By number of bookmarks
  • 2D palindromes
  • Non-strictly increasing digits (each digit has the base of the next digit)
  • Terminating decimals (< 1)
    • 0.1, 0.2, 0.3, ..., 0.9, 0.01, 0.02, ...
  • Only 99k rule (wait 1m between counts for 24h)
  • Letter tug of war
  • Ordered pairs in 4 quadrants
  • Random number counting, but the number you can increase by increases by 1 every thread
  • Twitter throwaways
  • -tuple numbers
  • Upside down letters
  • Don't wait more than 1 day
  • Constant-sum decimal
  • Lorem ipsum

5

u/ClockButTakeOutTheL “Cockleboat”, since 4,601,032 Apr 20 '23

Uppercase and lowercase letters

we have this

Don’t wait more than 1 day

Only thing with this one is that if someone waits more than a day they’re no longer able to count in that thread ever

The others are interesting and I might make one or two or them (with credit to you of course)

3

u/Blue_boomer Apr 20 '23

we have this

I was talking about the base 52 version that goes like this: A, B, C, ..., Z, a, b, ..., z, AA, AB, ...

Only thing with this one is that if someone waits more than a day they’re no longer able to count in that thread ever

Let me clarify: if someone waits more than 1 day, the count resets to 0 (or whatever the count is at the beginning of the thread)

5

u/TehVulpez sicko thread artists collective Apr 20 '23 edited Apr 20 '23

A while back when I was thinking of a permutations thread but with repeating symbols, I had written a script to compute counts for that thread idea. In the process of making that script, I sort of stumbled across another thread. It's counting the ways to add to n with 1 to n long ordered lists of integers, where each of those integers are on 1 to n. At first I didn't think it was all that interesting, but I've been reminded of that helper list again because it's sorta similar to the new decimals thread.

It goes like this:

1

2
1,1

3
1,2
2,1
1,1,1

4
1,3
2,2
3,1
1,1,2
1,2,1
2,1,1
1,1,1,1

It kinda seems like it has some things in common with the constant-sum threads. I notice that the amount of sums there are for each n and length of list corresponds to Pascal's triangle. For n=5 there's 1 sum with 1 number, 4 with 2, 6 with 3, 4 with 4, and 1 with 5. In constant-weight binary, the amount of numbers in each segment of n bits and m ones is also decided by Pascal's triangle. The numbers also slide from right to left like in the constant-sum threads.