VOOZH about

URL: https://apify.com/parseforge/oeis-integer-sequences-scraper

โ‡ฑ OEIS Integer Sequences Scraper ยท Apify


Pricing

from $9.00 / 1,000 result items

Go to Apify Store

OEIS Integer Sequences Scraper

Export integer sequences from the Online Encyclopedia of Integer Sequences (OEIS) with 370k+ entries. Search by A-number, keyword, or sequence values. Pull sequence terms, formulas, references, authors, cross-references, and program code.

Pricing

from $9.00 / 1,000 result items

Rating

0.0

(0)

Developer

๐Ÿ‘ ParseForge

ParseForge

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

a month ago

Last modified

Share

๐Ÿ‘ ParseForge Banner

๐Ÿ”ข OEIS Integer Sequences Scraper

๐Ÿš€ Export integer sequences from the OEIS in seconds. Search 370,000+ sequences by A-number, keyword, or matching terms. Pull terms, formulas, references, authors, cross-references, and program code (Maple, Mathematica, Python, more).

๐Ÿ•’ Last updated: 2026-05-22 ยท ๐Ÿ“Š 22 fields per record ยท ๐Ÿ”ข 370,000+ sequences ยท ๐Ÿง  OEIS Foundation source ยท ๐Ÿ’ป Multi-language programs

The OEIS Integer Sequences Scraper taps the Online Encyclopedia of Integer Sequences, the canonical reference for integer sequences in mathematics. Maintained since 1964 by Neil Sloane and the OEIS Foundation, the database now indexes more than 370,000 sequences, each curated with terms, formulas, generating functions, references, code, and cross-links.

This Actor returns 22 structured fields per record, including the A-number, name, full numeric data, term array, offset, keywords, author, creation and revision dates, comments, references, links, formulas, examples, Maple and Mathematica snippets, multi-language program code, and cross-references to related sequences.

๐ŸŽฏ Target Audience๐Ÿ’ก Primary Use Cases
Mathematicians, ML feature engineers, programmers, combinatorialists, recreational math fans, educators, puzzle designersPattern recognition, sequence identification, code generation reference, OEIS-grounded LLM features, ML training data, problem-set curation

๐Ÿ“‹ What the OEIS Integer Sequences Scraper does

Flexible OEIS search syntax in a single Actor:

  • ๐Ÿ”ข A-number lookup. id:A000045 returns Fibonacci.
  • ๐Ÿ“› Keyword search. fibonacci, prime, partition, permutation.
  • ๐Ÿงฎ Match by terms. Paste a comma-separated sequence (1,1,2,3,5,8) and OEIS finds matching entries.
  • ๐Ÿท๏ธ Filter by keywords. Combine with OEIS-curated tags like core, easy, nice, tabl, nonn.
  • ๐Ÿง‘โ€๐Ÿ”ฌ Author filter. author:Sloane narrows to entries by a specific contributor.

Each record includes the A-number, sequence values (string and parsed array), offset, OEIS keywords, author byline, creation and revision dates, prose comments, bibliographic references, hyperlinks, mathematical formulas, worked examples, Maple/Mathematica/program code, and cross-references to related A-numbers.

๐Ÿ’ก Why it matters: OEIS is the de facto authority for "what sequence is this?" Building your own client means crawling HTML, parsing free-text fields, and handling Sloane's idiosyncratic flat-file format. This Actor delivers a tidy schema with terms already parsed into an array.


๐ŸŽฌ Full Demo

๐Ÿšง Coming soon: a 3-minute walkthrough showing how to go from sign-up to a downloaded dataset.


โš™๏ธ Input

InputTypeDefaultBehavior
maxItemsinteger10Records to return. Free plan caps at 10, paid plan at 1,000,000.
searchQuerystring"fibonacci"Native OEIS search syntax (A-number, keyword, terms, or combined query).
keywordsstring[][]Optional list of OEIS keyword filters (intersected with searchQuery).

Example: pull the Fibonacci sequence by A-number.

{
"maxItems":1,
"searchQuery":"id:A000045"
}

Example: find essential ("core") sequences related to primes.

{
"maxItems":20,
"searchQuery":"prime",
"keywords":["core","nice"]
}

Example: identify a mystery sequence by matching terms.

{
"maxItems":5,
"searchQuery":"1,1,2,3,5,8,13,21"
}

โš ๏ธ Good to Know: OEIS search returns results in paginated batches. The Actor paginates automatically and respects polite request pacing so you avoid being rate-limited.


๐Ÿ“Š Output

Each record contains 22 fields. Download the dataset as CSV, Excel, JSON, or XML.

๐Ÿงพ Schema

FieldTypeExample
๐Ÿ†” aNumberstring"A000045"
๐Ÿ”ข numberinteger45
๐Ÿท๏ธ namestring"Fibonacci numbers: F(n) = F(n-1) + F(n-2)..."
๐Ÿงพ datastring"0,1,1,2,3,5,8,13,21,34,55,89,144,..."
๐Ÿ“Š termsnumber[][0, 1, 1, 2, 3, 5, 8, 13, 21, 34]
๐Ÿ“ offsetstring | null"0,3"
๐Ÿท๏ธ keywordsstring[] | null["core", "nonn", "easy", "nice"]
๐Ÿ‘ค authorstring | null"N. J. A. Sloane"
๐Ÿ•’ createdDateISO 8601 | null"1991-05-19T00:00:00.000Z"
๐Ÿ•“ revisedDateISO 8601 | null"2026-05-20T00:00:00.000Z"
๐Ÿ’ฌ commentstring[] | null["F(n+2) = F(n+1) + F(n).", ...]
๐Ÿ“š referencestring[] | null["Knuth, TAOCP Vol. 1, ...", ...]
๐Ÿ”— linkstring[] | null["https://oeis.org/A000045/b000045.txt", ...]
โž• formulastring[] | null["F(n) = (phi^n - (-phi)^(-n))/sqrt(5).", ...]
๐Ÿงฎ examplestring[] | null["F(5) = 5.", ...]
๐ŸŸฃ maplestring[] | null["A000045 := proc(n) ... end:"]
๐ŸŸ  mathematicastring[] | null["Table[Fibonacci[n], {n, 0, 30}]"]
๐Ÿ’ป programstring[] | null["(Python) def fib(n): ...", "(Haskell) ..."]
๐Ÿ”— xrefstring[] | null["A000032", "A001690", ...]
๐ŸŒ urlstring"https://oeis.org/A000045"
๐Ÿ•“ scrapedAtISO 8601"2026-05-22T00:00:00.000Z"
โš ๏ธ errorstring | nullnull

๐Ÿ“ฆ Sample records


โœจ Why choose this Actor

Capability
๐Ÿ”ข370,000+ sequences. The complete, continuously updated OEIS catalog.
๐ŸงฎMulti-mode search. A-number, keyword, matching terms, author, OEIS keyword filters.
๐Ÿ“ŠParsed term arrays. Numeric terms[] ready for analysis, alongside raw data string.
๐Ÿ’ปMulti-language code. Maple, Mathematica, Python, Haskell, PARI/GP, Sage, and more.
๐Ÿ”—Cross-references. Every entry links to related sequences via xref.
โšกFast. 100 sequences in under a minute.
๐Ÿ”Always fresh. Every run hits the live OEIS feed.

๐Ÿ“Š OEIS is the canonical reference for integer sequences and is cited by mathematicians, programmers, and AI researchers worldwide.


๐Ÿ“ˆ How it compares to alternatives

ApproachCostCoverageRefreshFiltersSetup
โญ OEIS Integer Sequences Scraper (this Actor)$5 free credit, then pay-per-use370,000+ sequencesLive per runA-number, keyword, terms, OEIS tagsโšก 2 min
Manual OEIS website browsingFreePer-queryManualWeb form๐Ÿข Hours
Hand-coded OEIS clientFreeFullPer-buildCustomโณ Days
Static OEIS data dumpFreeSnapshotPeriodicNone๐Ÿ•’ Variable

Pick this Actor when you want live search, parsed terms, and zero parser work.


๐Ÿš€ How to use

  1. ๐Ÿ“ Sign up. Create a free account with $5 credit (takes 2 minutes).
  2. ๐ŸŒ Open the Actor. Go to the OEIS Integer Sequences Scraper page on the Apify Store.
  3. ๐ŸŽฏ Set input. Enter an A-number, keyword, or term list and optional keyword filters.
  4. ๐Ÿš€ Run it. Click Start and let the Actor collect your data.
  5. ๐Ÿ“ฅ Download. Grab your results in the Dataset tab as CSV, Excel, JSON, or XML.

โฑ๏ธ Total time from signup to downloaded dataset: 3-5 minutes. No coding required.


๐Ÿ’ผ Business use cases

๐Ÿง  ML and AI feature engineering

  • Generate training data for sequence-prediction models
  • Build benchmarks for mathematical reasoning LLMs
  • Ground retrieval-augmented systems with OEIS records
  • Test code-generation models against curated programs

๐Ÿ”ข Mathematics and research

  • Identify mystery sequences from partial terms
  • Discover related sequences via cross-references
  • Pull formulas and references for papers
  • Curate problem sets for teaching combinatorics

๐Ÿ’ป Programming and tooling

  • Build "what is this sequence?" developer tools
  • Generate code-completion snippets from OEIS programs
  • Power competitive-programming hint engines
  • Seed unit tests with canonical sequences

๐ŸŽ“ Education

  • Build interactive math lessons around OEIS examples
  • Curate sequence-pattern puzzles for students
  • Source historical context from author attributions
  • Cross-language code teaching with Maple/Mathematica/Python

๐Ÿ”Œ Automating OEIS Integer Sequences Scraper

Control the scraper programmatically for scheduled runs and pipeline integrations:

  • ๐ŸŸข Node.js. Install the apify-client NPM package.
  • ๐Ÿ Python. Use the apify-client PyPI package.
  • ๐Ÿ“š See the Apify API documentation for full details.

The Apify Schedules feature lets you trigger this Actor on any cron interval. Weekly refreshes keep downstream search indices in sync automatically.


๐ŸŒŸ Beyond business use cases

Data like this powers more than commercial workflows. The same structured records support research, education, civic projects, and personal initiatives.

๐ŸŽ“ Research and academia

  • Thesis projects in combinatorics and number theory
  • Reproducible math papers with cited OEIS pulls
  • Course datasets for discrete-math and algorithms classes
  • Open-science notebooks grounded in OEIS records

๐ŸŽจ Personal and creative

  • Hobbyist math blogs and YouTube explainers
  • Visualization projects on sequence behavior
  • Puzzle and recreational-math content
  • Generative art driven by integer sequences

๐Ÿค Non-profit and civic

  • Open educational resources for under-served schools
  • Math-olympiad training material curation
  • Public-interest visualizations of numerical patterns
  • Citizen-math outreach and clubs

๐Ÿงช Experimentation

  • Train sequence-completion ML models
  • Benchmark LLMs on math reasoning with OEIS labels
  • Prototype agent pipelines that identify sequences
  • Build LLM-grounded math assistants with cited entries

๐Ÿค– Ask an AI assistant about this scraper

Open a ready-to-send prompt about this ParseForge actor in the AI of your choice:


โ“ Frequently Asked Questions

๐Ÿงฉ How does it work?

Enter a search query using native OEIS syntax (A-number, keyword, comma-separated terms, or a combined expression), optionally add keyword filters, and click Start. The Actor paginates results and emits one structured record per sequence.

๐Ÿ“ How accurate is the data?

Records mirror the live OEIS feed. OEIS is curated by Neil Sloane and a global volunteer editorial board, with every change peer-reviewed before publication.

๐Ÿ” How often is the dataset refreshed?

OEIS is updated daily as editors approve new sequences and revisions. Every Actor run reflects the current OEIS state.

๐Ÿ” Can I identify a sequence from just a few terms?

Yes. Paste the terms as a comma-separated query (e.g. 1,1,2,3,5,8) and OEIS returns matching sequences ranked by relevance.

โฐ Can I schedule regular runs?

Yes. Use Apify Schedules to run this Actor on any cron interval and keep a downstream search index in sync.

โš–๏ธ Is this data legal to use?

OEIS publishes under a Creative Commons license. Review the specific CC terms for the sequences you use, but most reuse is permitted with attribution.

๐Ÿ’ผ Can I use this data commercially?

Generally yes, subject to the OEIS Creative Commons license. Attribute the OEIS Foundation when you redistribute or build derivative works.

๐Ÿ’ณ Do I need a paid Apify plan to use this Actor?

No. The free Apify plan is enough for testing and small runs (10 records per run). A paid plan lifts the limit and gives you access to scheduling, higher concurrency, and larger datasets.

๐Ÿ” What happens if a run fails or gets interrupted?

Apify automatically retries transient errors. If a run still fails, you can inspect the log in the Runs tab, fix the input, and re-run. Partial datasets from failed runs are preserved so you never lose progress.

๐Ÿ†˜ What if I need help?

Our support team is here to help. Contact us through the Apify platform or use the Tally form linked below.


๐Ÿ”Œ Integrate with any app

OEIS Integer Sequences Scraper connects to any cloud service via Apify integrations:

  • Make - Automate multi-step workflows
  • Zapier - Connect with 5,000+ apps
  • Slack - Get run notifications in your channels
  • Airbyte - Pipe sequence data into your warehouse
  • GitHub - Trigger runs from commits and releases
  • Google Drive - Export datasets straight to Sheets

You can also use webhooks to trigger downstream actions when a run finishes. Push fresh OEIS records into your product backend, or alert your team in Slack.


๐Ÿ”— Recommended Actors

๐Ÿ’ก Pro Tip: browse the complete ParseForge collection for more reference-data scrapers.


๐Ÿ†˜ Need Help? Open our contact form to request a new scraper, propose a custom data project, or report an issue.


โš ๏ธ Disclaimer: this Actor is an independent tool and is not affiliated with, endorsed by, or sponsored by the OEIS Foundation, Neil Sloane, or any editorial board member. All trademarks mentioned are the property of their respective owners. Only publicly available open data is collected.

You might also like

Backlink Building Agent

daniil.poletaev/backlink-building-agent

The Backlink Building Agent automates backlink outreach by finding relevant pages & websites, extracting contacts from these websites, and then crafting personalized outreach sequences based on the content to these partners. These sequences can be used on email, LinkedIn, Twitter, & WhatsApp.

๐Ÿ‘ User avatar

Daniil Poletaev

465

FiboFlow Pro

alixocracy/fiboflow-pro

FiboFlow generates Fibonacci sequences on demand and makes them available via API or datasets. Customize sequence length, starting numbers, and output format. Ideal for math enthusiasts, developers testing algorithms, or any workflow that needs quick access to Fibonacci patterns at scale

4

5.0

Ensembl Genomics Scraper (Genes, Variants, Sequences)

parseforge/ensembl-genomics-scraper

Query the Ensembl genome reference for 200+ species. Look up genes by symbol or stable ID, list features in a genomic region, fetch DNA sequence, or resolve human variants (rsIDs). Returns biotype, coordinates, transcript IDs, descriptions, and assembly metadata.

Dropshipping niche finder scraper

funny_electrician/Korak1919

Cross-references AliExpress trends with Google Search volume.

๐Ÿ‘ User avatar

Milton Gardener

2

UniProt Protein Sequence & Annotation Scraper

parseforge/uniprot-scraper

Export UniProt Knowledgebase entries โ€” search Swiss-Prot by organism, keyword, gene, or any UniProt query, or fetch a single accession. Returns names, genes, organism, sequence length & molecular weight, keywords, comments, features, and PDB/RefSeq/Ensembl/KEGG cross-refs.

Cold Email Sequencer โ€” SMTP, SendGrid & Mailgun

ryanclinton/outreach-sequencer

Send personalized cold email sequences via SMTP, SendGrid, or Mailgun. Automated day-3 and day-7 follow-ups. Sequence state persisted in KV Store across runs. CAN-SPAM compliant. $0.05/email.

Oscaro Product Scraper

sian.agency/oscaro-product-scraper

Scrape Oscaro car parts โ€” prices (EUR), brands, references, EAN, TecDoc specs, cross-references & images. Search by part name or OE reference, no vehicle selection. Clean JSON/CSV, no code.

๐Ÿ‘ User avatar

SIรN Oรœ

2

๐Ÿš€LinkedIn Profile Enricher + Personalized AI Message Sequence

pryzmlabs/linkedin-profile-enricher

Paste your LinkedIn profile URLs, pick your outreach goal, and drop in your website URL - we analyze your site to understand your business and offer, then return a fully enriched profile and a personalized 4-message outreach sequence for every lead, written from your voice.

LinkedIn Lead AI Outreach Message Generator

shahabuddin38/LinkedIn-Lead-AI-Outreach-Message-Generator

Generate personalized LinkedIn outreach messages, follow-ups, and email versions from lead data. Score prospects, detect pain points, and create reply-focused sequences that feel human and relevant. No scraping or automation, just smarter outreach to connect and convert better leads.