Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Pattern
#1
By GummyBear's request

He wants you to try and find all patterns that you see in this sequence:
48, 38, 33, 30, 28.
Reply
#2
The only thing I see is the difference is divided by two, then rounded, so 10, 5, 3 (2.5), 2 (1.5)...then the rest would be 1's.

48 - 38 = 10
38 - 33 = 5
33 - 30 = 3
30 - 28 = 2
Reply
#3
Decreasing rational function:

(78 + 18 * x)/(1 + x)
Reply
#4
Code:
int i = 48, j = 38, k = 10;
System.out.println(i);
while {
  k = (int)((i - j) / 2 + .6);
  i -= (i - j);
  j -= k;
  System.out.println(i);
}
Reply
#5
Devil's Sunrise Wrote:Decreasing rational function:

(78 + 18 * x)/(1 + x)

Why not start x at 2 and use (60+18x)/x -> 18 + 60/x?

Taking into account the player as a target that makes it x=#targets(incl. players) -> 18+60/x per monster
Reply
#6
Stereo Wrote:Why not start x at 2 and use (60+18x)/x -> 18 + 60/x?

Taking into account the player as a target that makes it x=#targets(incl. players) -> 18+60/x per monster
Stereo, you somehow didn't notice that I gave absolutely no context in this thread Rolleyes I just wanted to see what people could come up with.
Reply
#7
Add all the digits up. If it still isn't a single-digit number, do it again.

48, 38, 33, 30, 28
12, 11, 6, 3, 10
3, 2, 6, 3, 1

If we took 33 out as an anomaly, the rest of the numbers would be factors of the original numbers.

---

When I typed in Google "3231 " (including the space), Google Suggest suggested the following locations. I looked them up on Google Maps.

3231 Cambridge Pl
Concord, CA 94518
Nothing listed

3231 Waring Ct
Oceanside, CA 92056
Various dental and eyecare centers, with a chiropractor and a health food store (and STD testing)

3231 S Country Club Way
Tempe, AZ 85282
More than 10 companies, including a law office and a laboratory

3231 Allen Pkwy
Houston, TX 77019
Corporate housing and apartments

3231 Duke St
Alexandria, VA 22314
Baja Fresh and Boston Market and a locksmith

3231 Avent Ferry Rd
Raleigh, NC 27606
10 Companies, including a beauty salon, drivers license office, pizza shop, and a jewelry store.

3231 N Clark St (Illinois)
Orange (restaurant in Chicago)

3231 se 6th ave topeka ks
Payless Shoe Source and two organizations

3231 Fernside Blvd
Alameda, CA 94501
John Galt Communications (random company)

32631 is a county in Florida.
Reply
#8
Stereo Wrote:Why not start x at 2 and use (60+18x)/x -> 18 + 60/x?

Taking into account the player as a target that makes it x=#targets(incl. players) -> 18+60/x per monster

Then we should have 78 first in the sequence :x

but sure:
x = 0 = first element
(96 + 18 * x)/(2 + x)

x = 2 = first element
18 + 60 / x

x = 3 = first element
(42 + 18x) / (x - 1)
or (18x^2 + 60x + 42)/(x^2-1), though that looks rather horrible
Reply
#9
Russt Wrote:By GummyBear's request

He wants you to try and find all patterns that you see in this sequence:
48, 38, 33, 30, 28.

The pattern I see?:f6:

#(punctuation mark)-#(punctuation mark)-#(punctuation mark)-#(punctuation mark)-#(punctuation mark)Glitter
Liberal Arts Major FTW!
Reply
#10
Devil's Sunrise Wrote:Then we should have 78 first in the sequence :x

It's percentage damage for Heal depending how many monsters it hits, it always targets the player first so the first number is index 2 if you go by #targets.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)